Hello.
Cubecell HTCC-AB02S. I switched off the Lorawan ADR because I want to set the datarate myself out of my code.
I tried the following code without success:
void setDR(int8_t datarate) {
MibRequestConfirm_t mibSet;
mibSet.Type = MIB_CHANNELS_DATARATE;
mibSet.Param.ChannelsDatarate = datarate;
LoRaMacMibSetRequestConfirm( &mibSet );
}
I got every message with SF7 defined in LORAWAN_DEFAULT_DATARATE
Is there a way to change the datarate out of my code ?
Thanks for help.
Marc