RTduino Source Code Reference Manual
Functions
System

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...
 

Detailed Description

System-related functions and initialization.

Function Documentation

◆ initVariant()

void initVariant ( void  )

Variant-specific initialization function.

This function is called during the initialization process to set up variant-specific configurations.

Note
Do not call this function manually.

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.

◆ loop()

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.

See also
https://www.arduino.cc/reference/en/language/structure/sketch/loop

◆ setup()

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.

See also
https://www.arduino.cc/reference/en/language/structure/sketch/setup