1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 22:32:44 +01:00

cpu/esp8266: ESP8266 needs 5 cycles per busy loop

This commit is contained in:
Benjamin Valentin 2024-01-09 23:20:35 +01:00
parent 5dc43bd62d
commit 8bcfe7b7b6

View File

@ -34,6 +34,11 @@ extern "C" {
*/ */
#define CPUID_LEN (4U) #define CPUID_LEN (4U)
/**
* @brief CPU cycles per busy wait loop
*/
#define CPU_CYCLES_PER_LOOP (5)
/** /**
* @name GPIO configuration * @name GPIO configuration
* @{ * @{