Skip to content
Snippets Groups Projects
Commit e489b211 authored by rahix's avatar rahix Committed by schneider
Browse files

chore(leds): Convert LEDs module to new mutex API


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 3b436505
No related branches found
No related tags found
No related merge requests found
...@@ -7,15 +7,16 @@ ...@@ -7,15 +7,16 @@
#include <stdbool.h> #include <stdbool.h>
//TODO: create smth like vTaskDelay(pdMS_TO_TICKS(//put ms here)) for us, remove blocking delay from /lib/leds.c to avoid process blocking /*
* TODO: create smth like vTaskDelay(pdMS_TO_TICKS(//put ms here)) for us,
* remove blocking delay from /lib/leds.c to avoid process blocking
*/
#define NUM_LEDS 15 /* Take from lib/card10/leds.c */ #define NUM_LEDS 15 /* Take from lib/card10/leds.c */
static void do_update() static void do_update(void)
{ {
while (hwlock_acquire_timeout(HWLOCK_LED, portMAX_DELAY) < 0) { hwlock_acquire(HWLOCK_LED);
vTaskDelay(pdMS_TO_TICKS(1));
}
leds_update_power(); leds_update_power();
leds_update(); leds_update();
...@@ -96,12 +97,8 @@ void epic_leds_dim_top(uint8_t value) ...@@ -96,12 +97,8 @@ void epic_leds_dim_top(uint8_t value)
{ {
leds_set_dim_top(value); leds_set_dim_top(value);
if (personal_state_enabled() == 0) { if (personal_state_enabled() == 0) {
while (hwlock_acquire_timeout(HWLOCK_I2C, portMAX_DELAY) < 0) { hwlock_acquire(HWLOCK_I2C);
vTaskDelay(pdMS_TO_TICKS(1));
}
leds_update(); leds_update();
hwlock_release(HWLOCK_I2C); hwlock_release(HWLOCK_I2C);
} }
} }
...@@ -110,35 +107,24 @@ void epic_leds_dim_bottom(uint8_t value) ...@@ -110,35 +107,24 @@ void epic_leds_dim_bottom(uint8_t value)
{ {
leds_set_dim_bottom(value); leds_set_dim_bottom(value);
if (personal_state_enabled() == 0) { if (personal_state_enabled() == 0) {
while (hwlock_acquire_timeout(HWLOCK_I2C, portMAX_DELAY) < 0) { hwlock_acquire(HWLOCK_I2C);
vTaskDelay(pdMS_TO_TICKS(1));
}
leds_update(); leds_update();
hwlock_release(HWLOCK_I2C); hwlock_release(HWLOCK_I2C);
} }
} }
void epic_leds_set_rocket(int led, uint8_t value) void epic_leds_set_rocket(int led, uint8_t value)
{ {
while (hwlock_acquire_timeout(HWLOCK_I2C, portMAX_DELAY) < 0) { hwlock_acquire(HWLOCK_I2C);
vTaskDelay(pdMS_TO_TICKS(1)); pmic_set_led(led, value > 31 ? 31 : value);
}
value = value > 31 ? 31 : value;
pmic_set_led(led, value);
hwlock_release(HWLOCK_I2C); hwlock_release(HWLOCK_I2C);
} }
int epic_leds_get_rocket(int led) int epic_leds_get_rocket(int led)
{ {
int ret = 0; int ret = 0;
while (hwlock_acquire_timeout(HWLOCK_I2C, portMAX_DELAY) < 0) {
vTaskDelay(pdMS_TO_TICKS(1));
}
hwlock_acquire(HWLOCK_I2C);
ret = pmic_get_led(led); ret = pmic_get_led(led);
hwlock_release(HWLOCK_I2C); hwlock_release(HWLOCK_I2C);
return ret; return ret;
...@@ -146,12 +132,8 @@ int epic_leds_get_rocket(int led) ...@@ -146,12 +132,8 @@ int epic_leds_get_rocket(int led)
void epic_set_flashlight(bool power) void epic_set_flashlight(bool power)
{ {
while (hwlock_acquire_timeout(HWLOCK_I2C, portMAX_DELAY) < 0) { hwlock_acquire(HWLOCK_I2C);
vTaskDelay(pdMS_TO_TICKS(1));
}
leds_flashlight(power); leds_flashlight(power);
hwlock_release(HWLOCK_I2C); hwlock_release(HWLOCK_I2C);
} }
...@@ -162,12 +144,8 @@ void epic_leds_update(void) ...@@ -162,12 +144,8 @@ void epic_leds_update(void)
void epic_leds_set_powersave(bool eco) void epic_leds_set_powersave(bool eco)
{ {
while (hwlock_acquire_timeout(HWLOCK_I2C, portMAX_DELAY) < 0) { hwlock_acquire(HWLOCK_I2C);
vTaskDelay(pdMS_TO_TICKS(1));
}
leds_powersave(eco); leds_powersave(eco);
hwlock_release(HWLOCK_I2C); hwlock_release(HWLOCK_I2C);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment