For the RAK 11300 I have some qustions about your LoRaWAN library:
#define LORAWAN_CONFIRMED_MSG_ON 0
Does this need to be set to 1 to switch on. Does this only effect uplink or downlink as well?
#define LORAWAN_CERTIF_PORT 224 /**< LoRaWAN certification port */
What is this and should it be set to a different value as the note says not to use port 224?
#define LORAWAN_APP_PORT 2 /**< LoRaWAN application port,
This is the port data is sent to the device on.
#define LORAWAN_APP_DATA_MAX_SIZE 242 /**< LoRaWAN User application data buffer size*/
Is the RX or TX data buffer?
#define LORAWAN_DEFAULT_DATARATE DR_3 /**< LoRaWAN Default datarate*/
Default Data Rate - Is the full range supported. I.E 0-15
Later in your example you define:
#define LORAWAN_DATERATE DR_5
Does this overide the default DR_3 ?
#define LORAWAN_DEFAULT_TX_POWER TX_POWER_0 /**< LoRaWAN Default tx power*/
What is the range of values supported here and how does it map to output power?
Thank you