c1c069e95f
* move f3-1 to f4, remove f3 * remove f2 * remove firmware F3 for pipeline * remove patch for F4 makefile * fix fw makefile * migrate bootloader to f4
20 lines
264 B
C
20 lines
264 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
BleGlueStatusUninitialized,
|
|
BleGlueStatusStartup,
|
|
BleGlueStatusStarted
|
|
} BleGlueStatus;
|
|
|
|
void APPE_Init();
|
|
|
|
BleGlueStatus APPE_Status();
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|