1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 09:33:50 +01:00

cpu/cortexm_common: Cortex M0/M23 needs 4 cycles/busy loop

This commit is contained in:
Benjamin Valentin 2024-01-09 18:19:36 +01:00
parent bfd29f0fa7
commit 79b51efc15

View File

@ -170,6 +170,14 @@ extern "C" {
*/
#define IRQ_API_INLINED (1)
#if defined(CPU_CORE_CORTEX_M0) || defined(CPU_CORE_CORTEX_M0PLUS) \
|| defined(CPU_CORE_CORTEX_M23)
/**
* @brief CPU cycles per busy wait loop
*/
#define CPU_CYCLES_PER_LOOP (4)
#endif
#ifdef __cplusplus
}
#endif