1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

net/skald : Enable configuration of 'SKALD_ADV_CHAN'

Add macros to disable specific channels and move macros to
'CONFIG_' namespace
This commit is contained in:
Akshai M 2020-08-20 18:28:07 +05:30
parent 4219036727
commit b210da4ef8

View File

@ -62,10 +62,31 @@ extern "C" {
#endif
/**
* @brief Static list of used advertising channels
* @brief Configure advertising channels
*/
#ifndef CONFIG_ADV_CH_37_DISABLE
#define ADV_CH_37 37,
#else
#define ADV_CH_37
#endif
#ifndef CONFIG_ADV_CH_38_DISABLE
#define ADV_CH_38 38,
#else
#define ADV_CH_38
#endif
#ifndef CONFIG_ADV_CH_39_DISABLE
#define ADV_CH_39 39
#else
#define ADV_CH_39
#endif
/**
* @brief List of advertising channels
*/
#ifndef SKALD_ADV_CHAN
#define SKALD_ADV_CHAN { 37, 38, 39 }
#define SKALD_ADV_CHAN { ADV_CH_37 ADV_CH_38 ADV_CH_39 }
#endif
/**