|
RTduino Source Code Reference Manual
|
System-related functions and initialization. More...
Functions | |
| void | setup (void) |
| Initialization function for the Arduino environment. More... | |
| void | loop (void) |
| Main loop function for the Arduino program. More... | |
| void | initVariant (void) |
| Variant-specific initialization function. More... | |
System-related functions and initialization.
| void initVariant | ( | void | ) |
Variant-specific initialization function.
This function is called during the initialization process to set up variant-specific configurations.
Variant-specific initialization function.
This function is called during library initialization to initialize the BSP variant. It can be left blank if no initialization is required.
| void loop | ( | void | ) |
Main loop function for the Arduino program.
This function is called repeatedly after the setup function, forming the main loop of the Arduino program.
| void setup | ( | void | ) |
Initialization function for the Arduino environment.
This function should be called at the beginning of the program to set up the Arduino environment.