Skip to content
Snippets Groups Projects
Verified Commit d4295ca4 authored by rahix's avatar rahix
Browse files

chore(epicardium): Move declarations into header


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent fed0c429
No related branches found
No related tags found
No related merge requests found
...@@ -9,10 +9,6 @@ ...@@ -9,10 +9,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
TaskHandle_t dispatcher_task_id;
void vBleTask(void *pvParameters);
#define BLEMAXCFGBYTES 100 #define BLEMAXCFGBYTES 100
int bleShallStart(void) int bleShallStart(void)
{ {
......
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
#define TIMEOUT pdMS_TO_TICKS(2000) #define TIMEOUT pdMS_TO_TICKS(2000)
TaskHandle_t dispatcher_task_id;
static StaticSemaphore_t api_mutex_data; static StaticSemaphore_t api_mutex_data;
SemaphoreHandle_t api_mutex = NULL; SemaphoreHandle_t api_mutex = NULL;
......
...@@ -32,6 +32,7 @@ void serial_enqueue_char(char chr); ...@@ -32,6 +32,7 @@ void serial_enqueue_char(char chr);
void vPmicTask(void *pvParameters); void vPmicTask(void *pvParameters);
/* ---------- BLE ---------------------------------------------------------- */ /* ---------- BLE ---------------------------------------------------------- */
void vBleTask(void *pvParameters);
void ble_uart_write(uint8_t *pValue, uint8_t len); void ble_uart_write(uint8_t *pValue, uint8_t len);
/* ---------- Display ------------------------------------------------------ */ /* ---------- Display ------------------------------------------------------ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment