Firmware's entry point
-
Hi everyone
I'd like to study RepRapFirmware to (possibly) add some modifications in it in the future. I am sorry for a stupid question, but where is the entry point to the firmware? I was looking for a traditional C/C++' "int main()" or "int loop()" (as in Arduino's programs) function, but couldn't find it. I couldn't find this info on the forum neither. Thank you.
-
@arplyu check out the FreeRTOS library which provides the entry point as far as I understand.
-
@arplyu the main entry point is AppMain in file Tasks.cpp.
-
@dc42 Thank you! That's answered my question.
@oliof said in Firmware's entry point:
@arplyu check out the FreeRTOS library which provides the entry point as far as I understand.
That's also a useful hint, I definitely should pay more attention to FreeRTOS. Thank you!