Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François Revol
firmware
Commits
d4295ca4
Verified
Commit
d4295ca4
authored
Aug 20, 2019
by
Rahix
Browse files
chore(epicardium): Move declarations into header
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
fed0c429
Changes
3
Hide whitespace changes
Inline
Side-by-side
epicardium/main.c
View file @
d4295ca4
...
...
@@ -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
)
{
...
...
epicardium/modules/dispatcher.c
View file @
d4295ca4
...
...
@@ -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
;
...
...
epicardium/modules/modules.h
View file @
d4295ca4
...
...
@@ -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 ------------------------------------------------------ */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment