You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KED/bsl/csl/stm32f042/Src/delay.c

8 lines
107 B

#include "delay.h"
#include "../Inc/stm32f0xx_csl.h"
void delayMs(uint16_t delay)
{
LL_mDelay(delay);
}