mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-05 06:25:16 +00:00
10 lines
99 B
C++
10 lines
99 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace Delay {
|
|
|
|
void ms(uint32_t t);
|
|
void us(uint32_t t);
|
|
|
|
}
|