mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 22:13:52 +01:00
net/csma_sender:Move CSMA_SENDER_MAX_BE_DEFAULT
Move CSMA_SENDER_MAX_BE_DEFAULT to 'CONFIG_' namespace
This commit is contained in:
parent
1b1d2d7e3b
commit
ced72c9cf4
@ -49,8 +49,8 @@ extern "C" {
|
||||
/**
|
||||
* @brief Default Maximal CSMA/CA Backoff Exponent
|
||||
*/
|
||||
#ifndef CSMA_SENDER_MAX_BE_DEFAULT
|
||||
#define CSMA_SENDER_MAX_BE_DEFAULT (5U)
|
||||
#ifndef CONFIG_CSMA_SENDER_MAX_BE_DEFAULT
|
||||
#define CONFIG_CSMA_SENDER_MAX_BE_DEFAULT (5U)
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
||||
@ -39,7 +39,7 @@
|
||||
|
||||
const csma_sender_conf_t CSMA_SENDER_CONF_DEFAULT = {
|
||||
CONFIG_CSMA_SENDER_MIN_BE_DEFAULT,
|
||||
CSMA_SENDER_MAX_BE_DEFAULT,
|
||||
CONFIG_CSMA_SENDER_MAX_BE_DEFAULT,
|
||||
CSMA_SENDER_MAX_BACKOFFS_DEFAULT,
|
||||
CSMA_SENDER_BACKOFF_PERIOD_UNIT
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user