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