#include "delay.hpp" #include "../Inc/stm32f0xx_csl.h" Delay::Delay() { } Delay::~Delay() { } void Delay::us(uint16_t delay) { LL_mDelay(delay); }