Skip to content

Commit

Permalink
Merge branch 'as923jp' of git://github.com/ryos36/arduino-lmic into r…
Browse files Browse the repository at this point in the history
…yos36-as923jp
  • Loading branch information
terrillmoore committed Oct 10, 2021
2 parents 2268c5d + a30dddb commit b6df2d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion project_config/lmic_project_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define CFG_us915 1
//#define CFG_au915 1
//#define CFG_as923 1
// #define LMIC_COUNTRY_CODE LMIC_COUNTRY_CODE_JP /* for as923-JP */
//#define CFG_as923jp 1
//#define CFG_kr920 1
//#define CFG_in866 1
#define CFG_sx1276_radio 1
Expand Down
4 changes: 4 additions & 0 deletions src/lmic/lorabase_as923.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ enum {
AS923_FREQ_MAX = 928000000
};
enum {
#if defined(CFG_as923jp)
AS923_TX_EIRP_MAX_DBM = 13 // 13 dBm = 19.95mW < 20mW
#else
AS923_TX_EIRP_MAX_DBM = 16 // 16 dBm
#endif
};
enum { DR_PAGE_AS923 = 0x10 * (LMIC_REGION_as923 - 1) };

Expand Down

0 comments on commit b6df2d4

Please sign in to comment.