Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fpletz
firmware
Commits
d4295ca4
Verified
Commit
d4295ca4
authored
5 years ago
by
rahix
Browse files
Options
Downloads
Patches
Plain Diff
chore(epicardium): Move declarations into header
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
fed0c429
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
epicardium/main.c
+0
-4
0 additions, 4 deletions
epicardium/main.c
epicardium/modules/dispatcher.c
+2
-0
2 additions, 0 deletions
epicardium/modules/dispatcher.c
epicardium/modules/modules.h
+1
-0
1 addition, 0 deletions
epicardium/modules/modules.h
with
3 additions
and
4 deletions
epicardium/main.c
+
0
−
4
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
)
{
...
...
This diff is collapsed.
Click to expand it.
epicardium/modules/dispatcher.c
+
2
−
0
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
;
...
...
This diff is collapsed.
Click to expand it.
epicardium/modules/modules.h
+
1
−
0
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 ------------------------------------------------------ */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment