python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Why does clock() returns -1 in C
I'm trying to implement an error handler using the clock() function from the "time.h" library. The code runs inside an embeeded system (Colibri IMX7 - M4 Processor). The function is used to ...
Victor Hugo Martins Marques
Votes: 0
Answers: 3
Why I can't assign struct returned by a function to struct?
I wrote "lightweight" time library and I have struct and typedef like this:
struct tmt {
uint16_t year;
uint8_t month;
uint8_t day;
uint8_t hour;
uint8_t minute;
uint...
Kamil
Votes: 0
Answers: 1
About how to properly makefile arm stm32
I know this is already a long discussed topic on here, yet I have not been able to fully understand/implement a makefile that suits my folder system and requirements.
here is what my any of my project...
Juan_David
Votes: 0
Answers: 0
Why can I not use std::string with the arm-none-eabi-g++ compiler?
This compiler business is not my forte...
I want to use the <string> template library in my embedded c++ code.
For example (sudo code):
#include <string>
int main() {
std::string str = ...
scottc11
Votes: 0
Answers: 2