2022-01-05 16:10:18 +00:00
|
|
|
#include "furi_hal_delay.h"
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
#include <furi.h>
|
|
|
|
#include <cmsis_os2.h>
|
2022-04-13 20:50:25 +00:00
|
|
|
#include <stm32wbxx_ll_utils.h>
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#define TAG "FuriHalDelay"
|
2022-04-13 20:50:25 +00:00
|
|
|
|
2022-03-30 15:23:40 +00:00
|
|
|
static volatile uint32_t tick_cnt = 0;
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
void furi_hal_delay_init() {
|
2021-09-10 02:19:02 +00:00
|
|
|
CoreDebug->DEMCR |= CoreDebug_DEMCR_TRCENA_Msk;
|
|
|
|
DWT->CTRL |= DWT_CTRL_CYCCNTENA_Msk;
|
|
|
|
DWT->CYCCNT = 0U;
|
2022-04-13 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t furi_hal_delay_instructions_per_microsecond() {
|
|
|
|
return SystemCoreClock / 1000000;
|
2021-09-10 02:19:02 +00:00
|
|
|
}
|
|
|
|
|
2022-03-30 15:23:40 +00:00
|
|
|
void furi_hal_tick(void) {
|
|
|
|
tick_cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t furi_hal_get_tick(void) {
|
|
|
|
return tick_cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_delay_us(float microseconds) {
|
2021-09-10 02:19:02 +00:00
|
|
|
uint32_t start = DWT->CYCCNT;
|
2022-04-13 20:50:25 +00:00
|
|
|
uint32_t time_ticks = microseconds * furi_hal_delay_instructions_per_microsecond();
|
2021-09-10 02:19:02 +00:00
|
|
|
while((DWT->CYCCNT - start) < time_ticks) {
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// cannot be used in ISR
|
|
|
|
// TODO add delay_ISR variant
|
2022-03-30 15:23:40 +00:00
|
|
|
void furi_hal_delay_ms(float milliseconds) {
|
2022-04-13 20:50:25 +00:00
|
|
|
if(!FURI_IS_ISR() && osKernelGetState() == osKernelRunning) {
|
|
|
|
uint32_t ticks = milliseconds / (1000.0f / osKernelGetTickFreq());
|
|
|
|
osStatus_t result = osDelay(ticks);
|
|
|
|
(void)result;
|
|
|
|
furi_assert(result == osOK);
|
|
|
|
} else {
|
|
|
|
furi_hal_delay_us(milliseconds * 1000);
|
|
|
|
}
|
2021-09-10 02:19:02 +00:00
|
|
|
}
|