This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Description
I ran into a bug where the B-L072Z-LRWAN1 board would reset when sending a message using access class 1 to normal rate. the code below would cause the board to reset using access class 0x11 in the session config.
dae_access_profile_t profile;
d7ap_fs_read_access_class(1, &profile);
profile.channel_header = (channel_header_t)
{
.ch_class = PHY_CLASS_NORMAL_RATE,
.ch_coding = PHY_CODING_FEC_PN9,
.ch_freq_band = PHY_BAND_868
};
d7ap_fs_write_access_class(1, &profile);
d7ap_send(args);