mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
gnrc/lorawan : Add IN_865 channel frequencies
This commit is contained in:
parent
d23441f740
commit
35e9612d02
@ -26,12 +26,18 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Default LoRaWAN channels for current region (EU868)
|
* @brief Default LoRaWAN channels
|
||||||
*/
|
*/
|
||||||
static const uint32_t gnrc_lorawan_default_channels[] = {
|
static const uint32_t gnrc_lorawan_default_channels[] = {
|
||||||
|
#if (IS_ACTIVE(CONFIG_LORAMAC_REGION_EU_868))
|
||||||
868100000UL,
|
868100000UL,
|
||||||
868300000UL,
|
868300000UL,
|
||||||
868500000UL
|
868500000UL
|
||||||
|
#elif (IS_ACTIVE(CONFIG_LORAMAC_REGION_IN_865))
|
||||||
|
865062500UL,
|
||||||
|
865402500UL,
|
||||||
|
865985000UL
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#define GNRC_LORAWAN_DEFAULT_CHANNELS_NUMOF \
|
#define GNRC_LORAWAN_DEFAULT_CHANNELS_NUMOF \
|
||||||
|
Loading…
Reference in New Issue
Block a user