How do I set AS923 band plan for P-NUCLEO-LRWAN2 sensor?
The guide says that the band plan can be changed using the Lora_SetDeviceBand() function for the AT-Master example.
/**************************************************************
* @brief Do a request to set the country band code for LoRaWAN
* @brief Need to write to DCT and Reset module to enable this setting
* @param BAND in value 0(EU-868 Band) / 1(US-Band)
* @retval LoRa return code
**************************************************************/
ATEerror_t Lora_SetDeviceBand(uint8_t DeviceBand);It only shows the values for EU and US bands. What value do I use to change to using AS923? The symbol USE_BAND_868 is defined in the symbols. Does changing it to USE_BAND_923 change the band plan? I cannot find use of this symbol anywhere in the AT-Master code.
