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

11 lines
99 B
C++

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