LibreVNA/Software/VNA_embedded/Application/Drivers/delay.hpp

15 lines
133 B
C++
Raw Normal View History

#pragma once
#include <stdint.h>
namespace Delay {
2022-06-20 07:02:09 +08:00
void Init();
uint64_t get_us();
void ms(uint32_t t);
2022-06-26 18:46:11 +08:00
void us(uint16_t t);
}