diff options
| author | François Cartegnie <281376+fcartegnie@users.noreply.github.com> | 2024-07-09 08:46:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-09 08:46:19 +0200 |
| commit | a6c62295e92b3d960700508a445be1fba71a3cc2 (patch) | |
| tree | 35c825b6551afad7688813d7de510111a67bf007 /src/ble/profile.h | |
| parent | 69b530cbbb72ad9e4b9a7a6c4742f29540664d00 (diff) | |
| parent | 8274cab154f198447f12028e1686bbe2a6de6ebd (diff) | |
Merge pull request #30 from kienvo/ble-init
feat: Bluetooth LE initial setup
Diffstat (limited to 'src/ble/profile.h')
| -rw-r--r-- | src/ble/profile.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ble/profile.h b/src/ble/profile.h new file mode 100644 index 0000000..bec1fa1 --- /dev/null +++ b/src/ble/profile.h @@ -0,0 +1,7 @@ +#ifndef __BLE_UART_SERVICE_H__
+#define __BLE_UART_SERVICE_H__
+
+int legacy_registerService();
+int devInfo_registerService();
+
+#endif /* __BLE_UART_SERVICE_H__ */
|