Mercurial > public > ostc4
diff Discovery/Src/tMenuEdit.c @ 1032:33b91584d827 Puls_Integration
New CV Pulse:
The basic infrastructure for external puls measurement via Bluetooth has been added. Precondition is an OSTC with an activated central role. The OSTC will then search for a BLE device with puls measurement service. Reading data and visualization is not implemented yet.
| author | Ideenmodellierer |
|---|---|
| date | Mon, 28 Jul 2025 18:34:45 +0200 |
| parents | ac25c35a3c97 |
| children | 2af07aa38531 |
line wrap: on
line diff
--- a/Discovery/Src/tMenuEdit.c Mon Jul 28 18:32:23 2025 +0200 +++ b/Discovery/Src/tMenuEdit.c Mon Jul 28 18:34:45 2025 +0200 @@ -42,6 +42,7 @@ #include "tMenuEditSystem.h" #include "tMenuEditXtra.h" #include "tMenuEditCustom.h" +#include "cv_heartbeat.h" /* Private types -------------------------------------------------------------*/ #define TEXTSIZE 16 @@ -256,6 +257,11 @@ case StMCustom3_CViewSelection5: case StMCustom3_CViewSelection6: refreshFct = CustomviewDivemode_refresh; break; +#ifdef ENABLE_PULSE_SENSOR_BT + case (StMOption_Heartbeat): refreshFct = refresh_Heartbeat; + break; +#endif + #ifdef ENABLE_MOTION_CONTROL case (StMCustom5_CViewPortCalib & MaskFieldDigit): case StMCustom5_CViewPortLayout:
