mcci-catena/arduino-lmic

No #if defined(CFG_au915) in example ttn-abp.ino

AusUser5 opened this issue · 1 comments

I'm trying to use the example sketch with au915 configuration, the lmic_project_config.h is configured as follows.

// project-specific definitions
//#define CFG_eu868 1
//#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_kr920 1
//#define CFG_in866 1
#define CFG_sx1276_radio 1
//#define LMIC_USE_INTERRUPTS

however in the in the ttn-abp.ino sketch I only see #if defined(CFG_eu868) and #elif defined(CFG_us915)

I believe ttn_abp.ino needs to be updated to read an apply the configuration of CFG_au915, could this be updated.

Thanks.

grep -L CFG_au915 $(grep -l CFG_us915 examples/*/*.ino) showed the following files:

  • examples/raw/raw.ino
  • examples/ttn-abp/ttn-abp.ino

I'll address this along with #550.