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 @@
#include <stdlib.h>
#include <string.h>
TaskHandle_t dispatcher_task_id;
void vBleTask(void *pvParameters);
#define BLEMAXCFGBYTES 100
int bleShallStart(void)
{
......
......@@ -8,6 +8,8 @@
#define TIMEOUT pdMS_TO_TICKS(2000)
TaskHandle_t dispatcher_task_id;
static StaticSemaphore_t api_mutex_data;
SemaphoreHandle_t api_mutex = NULL;
......
......@@ -32,6 +32,7 @@ void serial_enqueue_char(char chr);
void vPmicTask(void *pvParameters);
/* ---------- BLE ---------------------------------------------------------- */
void vBleTask(void *pvParameters);
void ble_uart_write(uint8_t *pValue, uint8_t len);
/* ---------- 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