LibreVNA/Software/VNA_embedded/Application/Util.hpp

15 lines
196 B
C++
Raw Normal View History

2020-11-15 06:53:55 +08:00
#ifndef UTIL_HPP_
#define UTIL_HPP_
#include <cstdint>
namespace Util {
/*
* Returns the frequency f appears to be when sampled with f_s
*/
uint32_t Alias(int64_t f, uint32_t f_s);
}
#endif