cueOS  2.4
cueOS - Universal Show Control OS for ARM
leds_driver.h
1
8#ifndef LED_DRIVER_H_
9#define LED_DRIVER_H_
10
11#include "stm32f4xx_hal.h"
12
13#define LED_DRIVER_COUNT 3
14#define LED_DRIVER_PORT GPIOD
15#define LED_DRIVER_BLINK_RATE 250
23#define LED_DRIVER_DEFAULT {{}, LED_DRIVER_UNINITIALISED}
24
25
31typedef enum{
35
39typedef enum{
44
48typedef enum{
49 LED_STATE_PIN = GPIO_PIN_12,
50 LED_ERROR_PIN = GPIO_PIN_14,
51 LED_NETWORK_PIN = GPIO_PIN_15
53
58typedef enum{
63
64
68typedef struct{
72
76typedef struct{
78 led_driver_status_e status; //TODO: THis is old and not really needed, maybe remove ?
80
81
82void leds_driver_init(void);
84
85
86#endif
87
void leds_driver_init(void)
LED Driver initialisation.
Definition: leds_driver.c:87
led_driver_pin_e
defines the driver's LED pin numbers
Definition: leds_driver.h:48
void leds_driver_set(led_driver_led_e led, led_driver_led_state_e state)
Assigns a state to a driver's led.
Definition: leds_driver.c:110
led_driver_led_e
defines index of the driver's LED to be used to select a specific led from the driver's led pool
Definition: leds_driver.h:58
led_driver_status_e
Status of the leds driver instance.
Definition: leds_driver.h:31
#define LED_DRIVER_COUNT
Definition: leds_driver.h:13
led_driver_led_state_e
defines the running mode of one of the driver's LED instance
Definition: leds_driver.h:39
@ LED_NETWORK_PIN
Definition: leds_driver.h:51
@ LED_ERROR_PIN
Definition: leds_driver.h:50
@ LED_STATE_PIN
Definition: leds_driver.h:49
@ LED_ERROR
Definition: leds_driver.h:60
@ LED_NETWORK
Definition: leds_driver.h:61
@ LED_STATE
Definition: leds_driver.h:59
@ LED_DRIVER_INITIALISED
Definition: leds_driver.h:33
@ LED_DRIVER_UNINITIALISED
Definition: leds_driver.h:32
@ LED_BLINK
Definition: leds_driver.h:42
@ LED_ON
Definition: leds_driver.h:41
@ LED_OFF
Definition: leds_driver.h:40
Defines a driver's LED instance.
Definition: leds_driver.h:68
led_driver_pin_e pin
Definition: leds_driver.h:69
led_driver_led_state_e state
Definition: leds_driver.h:70
Defines the leds driver instance.
Definition: leds_driver.h:76
led_driver_status_e status
Definition: leds_driver.h:78