diff --git a/sys/include/net/gnrc/lorawan/region.h b/sys/include/net/gnrc/lorawan/region.h index 8ed2794550..5f939e1af5 100644 --- a/sys/include/net/gnrc/lorawan/region.h +++ b/sys/include/net/gnrc/lorawan/region.h @@ -26,12 +26,18 @@ extern "C" { #endif /** - * @brief Default LoRaWAN channels for current region (EU868) + * @brief Default LoRaWAN channels */ static const uint32_t gnrc_lorawan_default_channels[] = { +#if (IS_ACTIVE(CONFIG_LORAMAC_REGION_EU_868)) 868100000UL, 868300000UL, 868500000UL +#elif (IS_ACTIVE(CONFIG_LORAMAC_REGION_IN_865)) + 865062500UL, + 865402500UL, + 865985000UL +#endif }; #define GNRC_LORAWAN_DEFAULT_CHANNELS_NUMOF \