0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 22:58:04 +03:00

removed SYSTICK_DelayUs()

This commit is contained in:
OneOfEleven
2023-11-05 20:26:42 +00:00
parent b438d7a903
commit 465d7333e3
10 changed files with 43 additions and 65 deletions

View File

@ -19,9 +19,9 @@
#include "driver/system.h"
#include "driver/systick.h"
void SYSTEM_DelayMs(uint32_t Delay)
void SYSTEM_DelayMs(const uint32_t Delay)
{
SYSTICK_DelayUs(Delay * 1000);
SYSTICK_Delay250ns(Delay * 4000);
}
void SYSTEM_ConfigureClocks(void)