LibreVNA/Software/VNA_embedded/Application/Util.hpp
2020-11-14 23:53:55 +01:00

15 lines
196 B
C++

#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