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);
void us(uint32_t t);
}