Skip to content

Commit f36492a

Browse files
author
Hasnain Virk
committed
Adding custom channel plan support in AS923
The asia pacific region supports custom channel planning and downlink channel request. By virtue of a mistake, this information was missing and hence a custom channel support was not working. Fixes issue #6783.
1 parent 32e95f0 commit f36492a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

features/lorawan/lorastack/phy/LoRaPHYAS923.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,8 @@ LoRaPHYAS923::LoRaPHYAS923(LoRaWANTimeHandler &lora_time)
293293
phy_params.accept_tx_param_setup_req = true;
294294
phy_params.fsk_supported = true;
295295
phy_params.cflist_supported = true;
296-
296+
phy_params.dl_channel_req_supported = true;
297+
phy_params.custom_channelplans_supported = true;
297298
phy_params.default_channel_cnt = AS923_NUMB_DEFAULT_CHANNELS;
298299
phy_params.max_channel_cnt = AS923_MAX_NB_CHANNELS;
299300
phy_params.cflist_channel_cnt = AS923_NUMB_CHANNELS_CF_LIST;

0 commit comments

Comments
 (0)