|
rusEFI
The most advanced open source ECU
|
Functions | |
| void | LedBlinkInit (blt_int16u interval_ms) |
| Initializes the LED blink driver. | |
| void | LedBlinkTask (void) |
| Task function for blinking the LED as a fixed timer interval. | |
| void | LedBlinkExit (void) |
| Cleans up the LED blink driver. This is intended to be used upon program exit. | |
Variables | |
| static blt_int16u | ledBlinkIntervalMs |
| Holds the desired LED blink interval time. | |
| void LedBlinkExit | ( | void | ) |
Cleans up the LED blink driver. This is intended to be used upon program exit.
Definition at line 101 of file led.c.
Referenced by CpuUserProgramStartHook().

| void LedBlinkInit | ( | blt_int16u | interval_ms | ) |
Initializes the LED blink driver.
| interval_ms | Specifies the desired LED blink interval time in milliseconds. |
Definition at line 58 of file led.c.
| void LedBlinkTask | ( | void | ) |
Task function for blinking the LED as a fixed timer interval.
Definition at line 70 of file led.c.

|
static |
Holds the desired LED blink interval time.
Definition at line 49 of file led.c.
Referenced by LedBlinkInit(), and LedBlinkTask().