mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-20 09:43:23 +00:00
16 lines
231 B
C
16 lines
231 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Controls for thread handling SHCI & HCI event queues. Used internally. */
|
||
|
|
||
|
void ble_event_thread_start(void);
|
||
|
|
||
|
void ble_event_thread_stop(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|