1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

cpu/nrf52: add OpenWSN conf

This commit is contained in:
Francisco Molina 2020-10-09 10:29:09 +02:00
parent 1b8c78219b
commit 6f6001900f
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8

View File

@ -125,7 +125,6 @@ extern "C" {
#endif /* SOFTDEVICE_PRESENT */
/** @} */
#ifdef CPU_MODEL_NRF52840XXAA
/**
* @name OpenWSN timing constants
@ -137,8 +136,9 @@ extern "C" {
#define PORT_maxRxAckPrepare (400/PORT_US_PER_TICK)
#define PORT_maxRxDataPrepare (400/PORT_US_PER_TICK)
#define PORT_maxTxAckPrepare (400/PORT_US_PER_TICK)
/* Measured 40us @32.768Hz */
#define PORT_delayTx (40/PORT_US_PER_TICK)
/* Measured 220us */
#define PORT_delayTx (300/PORT_US_PER_TICK)
#define PORT_delayRx (150/PORT_US_PER_TICK)
/** @} */
#endif