LibreVNA/Software/HelperTools/SynthEvalBoard/Application/Drivers/delay.hpp
2021-06-04 21:25:05 +02:00

11 lines
99 B
C++

#pragma once
#include <stdint.h>
namespace Delay {
void ms(uint32_t t);
void us(uint32_t t);
}