We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2268c5d + a30dddb commit b6df2d4Copy full SHA for b6df2d4
project_config/lmic_project_config.h
@@ -3,7 +3,7 @@
3
#define CFG_us915 1
4
//#define CFG_au915 1
5
//#define CFG_as923 1
6
-// #define LMIC_COUNTRY_CODE LMIC_COUNTRY_CODE_JP /* for as923-JP */
+//#define CFG_as923jp 1
7
//#define CFG_kr920 1
8
//#define CFG_in866 1
9
#define CFG_sx1276_radio 1
src/lmic/lorabase_as923.h
@@ -68,7 +68,11 @@ enum {
68
AS923_FREQ_MAX = 928000000
69
};
70
enum {
71
+#if defined(CFG_as923jp)
72
+ AS923_TX_EIRP_MAX_DBM = 13 // 13 dBm = 19.95mW < 20mW
73
+#else
74
AS923_TX_EIRP_MAX_DBM = 16 // 16 dBm
75
+#endif
76
77
enum { DR_PAGE_AS923 = 0x10 * (LMIC_REGION_as923 - 1) };
78
0 commit comments