iSensor-SPI-Buffer  1.15
Firmware for the iSensor-SPI-Buffer board to enable full throughput buffered data capture on Analog Devices IMUs
led.h
Go to the documentation of this file.
1 
11 #ifndef INC_LED_H_
12 #define INC_LED_H_
13 
15 typedef enum LED
16 {
17  Blue = 0,
18  Green = 1
19 }LED;
20 
21 /* Public function prototypes */
22 
23 /* @cond DOXYGEN_IGNORE */
24 void LED_Turn_On(LED light);
25 void LED_Turn_Off(LED light);
26 /* @endcond */
27 
28 #endif /* INC_LED_H_ */
reg.h
Header file for iSensor-SPI-Buffer register interfacing module.
LED_Turn_On
void LED_Turn_On(LED light)
Turn on a selected LED.
Definition: led.c:22
led.h
Header file for iSensor-SPI-Buffer LED control module.
LED_Turn_Off
void LED_Turn_Off(LED light)
Turn off a selected LED.
Definition: led.c:47
LED
LED
Definition: led.h:16