We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See mcci-catena#44
TTN now sends MCMD_LADR_CHP_125OFF and then MCMD_LADR (selecting channels 0..15, enabling 8..15).
The problem is in processing MCMD_LADR_CHP_125OFF. Although we set the mask for channels 64..71 with:
MCMD_LADR_CHP_125OFF
LMIC.channelMap[64/16] = chmap & 0x00FF;
But we then immediately mis-set the number of enabled 500 kHz channels (we don't consider the mask), either clearing to 0 or setting to 8.
We also need to handle ChMaskCtl == 5, which is used for subband control.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See mcci-catena#44
TTN now sends MCMD_LADR_CHP_125OFF and then MCMD_LADR (selecting channels 0..15, enabling 8..15).
The problem is in processing
MCMD_LADR_CHP_125OFF
. Although we set the mask for channels 64..71 with:But we then immediately mis-set the number of enabled 500 kHz channels (we don't consider the mask), either clearing to 0 or setting to 8.
We also need to handle ChMaskCtl == 5, which is used for subband control.
The text was updated successfully, but these errors were encountered: