discoverpixy
|
Functions | |
bool | system_init () |
void | system_delay (uint32_t msec) |
void | system_process () |
void | system_toggle_led () |
The System Module provides access to delay functions, leds and provides a system init function
void system_delay | ( | uint32_t | msec | ) |
bool system_init | ( | ) |
Initializes the system. Call this method at the start of your app_init() function and before using any system_* functions
Definition at line 21 of file system.c.
void system_process | ( | ) |
Executes pending system events (like handling usb, timers etc). Call this somewhere in app_process().
Definition at line 31 of file system.c.