mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04: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
|