LibreVNA/Software/HelperTools/SynthEvalBoard/Application/Util.hpp
2021-06-04 21:25:05 +02: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