Organising a bit

This commit is contained in:
Ben V. Brown
2022-10-27 08:02:45 +11:00
parent 99df4b3307
commit 28011a3993
8 changed files with 349 additions and 446 deletions

View File

@@ -0,0 +1,23 @@
#ifndef PINECILV2_BLE_H_
#define PINECILV2_BLE_H_
/*
* BLE Interface for the Pinecil V2
*
* Exposes:
* - Live Measurements
* - Device Settings Names
* - Device Settings Values
*/
#ifdef __cplusplus
extern "C" {
#endif
// Spawns the BLE stack tasks and makes the device available to be connected to via BLE.
void ble_stack_start(void);
#ifdef __cplusplus
};
#endif
#endif