aboutsummaryrefslogtreecommitdiff
path: root/src/ble/setup.h
diff options
context:
space:
mode:
authorDien-Nhung Nguyen <kein@kienlab.com>2024-08-27 20:08:24 +0700
committerGitHub <noreply@github.com>2024-08-27 15:08:24 +0200
commitc95faf32a6a98975828717d596ff51dedeecdf56 (patch)
tree8fe52862e0c34bfe82509adf0c98a8e57056d4c7 /src/ble/setup.h
parentf5874d607315ff88b27414299089b8528b5bb07c (diff)
Add animations (#15)
* animation: add xbm animations * refactor: correct framebuffer terminology * animation: add animations and effect * animation: timing with TMOS scheduler
Diffstat (limited to 'src/ble/setup.h')
-rw-r--r--src/ble/setup.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ble/setup.h b/src/ble/setup.h
index fd65b84..b814b36 100644
--- a/src/ble/setup.h
+++ b/src/ble/setup.h
@@ -1,8 +1,11 @@
-#ifndef __HAL_H__
-#define __HAL_H__
+#ifndef __BLE_SETUP_H__
+#define __BLE_SETUP_H__
void tmos_clockInit(void);
void ble_hardwareInit(void);
void peripheral_init(void);
-#endif /* __HAL_H__ */
+void ble_enable_advertise();
+void ble_disable_advertise();
+
+#endif /* __BLE_SETUP_H__ */