Maxim Integrated's IoT development kit.

Dependencies:   MAX30101 MAX30003 MAX113XX_Pixi MAX30205 max32630fthr USBDevice

Revision:
2:68ffd74e3b5c
Parent:
1:efe9cad8942f
--- a/Kconfig	Tue Mar 13 14:52:59 2018 +0300
+++ b/Kconfig	Thu Mar 15 17:13:40 2018 +0300
@@ -35,15 +35,63 @@
 
 endmenu
 
+config BLE_SUPPORT
+	bool "Enable Bluetooth Low Energy Support"
+
 menu "Maxim IoT Devices"
+
 config LIBRARY_MAX30205
 	bool "MAX30205 - Human Body Temperature Sensor"
+
+if LIBRARY_MAX30205
+
+config MAX30205_BLE_NOTIFY_PERIOD_SEC	
+	int "BLE Notification period (sec)"
+	range 1 60 
+	default "5"
+	depends on BLE_SUPPORT
+
+endif
+	
 config LIBRARY_MAX113XX_PIXI
 	bool "MAX11300/01/11/12 - Programmable Mixed-Signal I/O"
+	
+if LIBRARY_MAX113XX_PIXI
+
+config MAX113XX_PIXI_BLE_NOTIFY_PERIOD_SEC	
+	int "BLE Notification period (sec)"
+	range 1 60 
+	default "5"
+	depends on BLE_SUPPORT
+
+endif
+		
 config LIBRARY_MAX30003
 	bool "MAX30003 - Single-Channel Integrated Biopotential (ECG, R to R Detection) AFE"
+	
+if LIBRARY_MAX30003
+
+config MAX30003_BLE_NOTIFY_PERIOD_SEC	
+	int "BLE Notification period (sec)"
+	range 1 60 
+	default "5"
+	depends on BLE_SUPPORT
+
+endif
+	
 config LIBRARY_MAX30101
 	bool "MAX30101 - High-Sensitivity Pulse Oximeter and Heart-Rate Sensor"
+	
+if LIBRARY_MAX30101
+
+config MAX30101_BLE_NOTIFY_PERIOD_SEC	
+	int "BLE Notification period (sec)"
+	range 1 60 
+	default "5"
+	depends on BLE_SUPPORT
+
+endif	
+	
 endmenu
 
 menu "Memory debug setup"