diff Discovery/Src/tMenuEditCvOption.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 8c0134a287da
children 195bfbdf961d
line wrap: on
line diff
--- a/Discovery/Src/tMenuEditCvOption.c	Mon Jul 28 18:32:23 2025 +0200
+++ b/Discovery/Src/tMenuEditCvOption.c	Mon Jul 28 18:34:45 2025 +0200
@@ -35,6 +35,8 @@
 #include "tMenuEdit.h"
 #include "tHome.h"
 
+#include "cv_heartbeat.h"
+
 /* Private function prototypes -----------------------------------------------*/
 static void openEdit_Timer(void);
 void openEdit_Compass(void);
@@ -56,13 +58,13 @@
     switch(line)
     {
 		case 1:
-		default:
-			resetMenuEdit(CLUT_MenuPageHardware);
-			openEdit_Compass();
-		break;
-		case 2:
-			openEdit_Timer();
-		break;
+		default:	resetMenuEdit(CLUT_MenuPageHardware);
+					openEdit_Compass();
+			break;
+		case 2:		openEdit_Timer();
+			break;
+		case 3: 	openEdit_Heartbeat();
+			break;
     }
 }