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>
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#define TAG "FuriHalDelay"
|
2022-03-29 13:01:56 +00:00
|
|
|
uint32_t instructions_per_us;
|
2022-03-30 15:23:40 +00:00
|
|
|
static volatile uint32_t tick_cnt = 0;
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
void furi_hal_delay_init(void) {
|
|
|
|
CoreDebug->DEMCR |= CoreDebug_DEMCR_TRCENA_Msk;
|
|
|
|
DWT->CTRL |= DWT_CTRL_CYCCNTENA_Msk;
|
|
|
|
DWT->CYCCNT = 0U;
|
2022-03-29 13:01:56 +00:00
|
|
|
instructions_per_us = SystemCoreClock / 1000000.0f;
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "Init OK");
|
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-03-29 13:01:56 +00:00
|
|
|
uint32_t time_ticks = microseconds * instructions_per_us;
|
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) {
|
2021-09-10 02:19:02 +00:00
|
|
|
uint32_t ticks = milliseconds / (1000.0f / osKernelGetTickFreq());
|
|
|
|
osStatus_t result = osDelay(ticks);
|
|
|
|
(void)result;
|
|
|
|
furi_assert(result == osOK);
|
|
|
|
}
|