khang 230620

Dependencies:   ISL29011

Revision:
33:afbcb9dcb0ac
Parent:
22:d9bc10bbc433
Child:
41:76130744ebe5
--- a/examples/example_config.h	Thu Sep 13 15:32:55 2018 -0500
+++ b/examples/example_config.h	Mon Feb 24 02:48:35 2020 +0000
@@ -1,6 +1,7 @@
 #ifndef __EXAMPLE__CONFIG_H__
 #define __EXAMPLE__CONFIG_H__
 
+#define AMR_NTN                  0  // see amr.cpp
 #define OTA_EXAMPLE              1  // see ota_example.cpp
 #define AUTO_OTA_EXAMPLE         2  // see auto_ota_example.cpp
 #define MANUAL_EXAMPLE           3  // see manual_example.cpp
@@ -9,7 +10,8 @@
 
 // the active example is the one that will be compiled
 #if !defined(ACTIVE_EXAMPLE)
-#define ACTIVE_EXAMPLE  OTA_EXAMPLE
+#define ACTIVE_EXAMPLE AMR_NTN
+//#define ACTIVE_EXAMPLE MANUAL_EXAMPLE
 #endif
 
 // the active channel plan is the one that will be compiled
@@ -21,8 +23,9 @@
 //      CP_AS923
 //      CP_AS923_JAPAN
 //      CP_IN865
+//      CP_VN919
 #if !defined(CHANNEL_PLAN)
-#define CHANNEL_PLAN CP_US915
+#define CHANNEL_PLAN CP_VN919
 #endif
 
 #endif