cueOS  2.4
cueOS - Universal Show Control OS for ARM
leds_driver.c
1
6#include "cmsis_os.h"
7#include "leds_driver.h"
8
9//TODO: check this, it was made in a hurry and it seems quite shitty, could be greatly improved in a minimal amount of time
10
11/***============================================================================================================================
12 * Private variables definitions
13 * These variables are only accessible from within the file's scope
14 *=============================================================================================================================*/
15
17static const led_driver_pin_e LED_PINS[LED_DRIVER_COUNT] = {
21};
22
23
24/***============================================================================================================================
25 * Private functions definitions
26 * These functions are only accessible from within the file's scope
27 *=============================================================================================================================*/
28
35led_driver_led_s _leds_driver_init_led(led_driver_pin_e pin){
36
37 led_driver_led_s led = {pin, LED_OFF};
38
39 GPIO_InitTypeDef led_init = {0};
40 HAL_GPIO_WritePin(LED_DRIVER_PORT, pin, GPIO_PIN_RESET);
41
42 led_init.Pin = pin;
43 led_init.Mode = GPIO_MODE_OUTPUT_PP;
44 led_init.Pull = GPIO_NOPULL;
45 led_init.Speed = GPIO_SPEED_FREQ_LOW;
46
47 HAL_GPIO_Init(LED_DRIVER_PORT, &led_init);
48
49 return led;
50
51}
52
58static void _leds_driver_manage(void *arg){
59 for(;;){
60 for(uint8_t i=0; i< LED_DRIVER_COUNT; i++){
61 switch(this.leds[i].state){
62 case LED_ON:
63 HAL_GPIO_WritePin(LED_DRIVER_PORT, this.leds[i].pin, LED_ON);
64 break;
65 case LED_OFF:
66 HAL_GPIO_WritePin(LED_DRIVER_PORT, this.leds[i].pin, LED_OFF);
67 break;
68 case LED_BLINK:
69 HAL_GPIO_TogglePin(LED_DRIVER_PORT, this.leds[i].pin);
70 break;
71 }
72 }
73 osDelay(LED_DRIVER_BLINK_RATE);
74 }
75}
76
77
78/***============================================================================================================================
79 * Public functions definitions
80 * These functions can be accessed outside of the file's scope
81 * @see leds_driver.h for declarations
82 *=============================================================================================================================*/
83
88
89 if(this.status == LED_DRIVER_UNINITIALISED){
90
91 for(uint8_t i=0; i< LED_DRIVER_COUNT; i++){
92 this.leds[i] = _leds_driver_init_led(LED_PINS[i]);
93 }
94
95 osThreadNew(_leds_driver_manage, NULL, NULL);
96
97 this.status = LED_DRIVER_INITIALISED;
98
99 }
100
101}
102
111 this.leds[led].state = state;
112}
113
114
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
#define LED_DRIVER_DEFAULT
leds driver instance default values
Definition: leds_driver.h:23
#define LED_DRIVER_BLINK_RATE
Definition: leds_driver.h:15
#define LED_DRIVER_PORT
Definition: leds_driver.h:14
#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_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
Defines the leds driver instance.
Definition: leds_driver.h:76