Formatted code (#1007)

* Updated style

* Updated files

* fixed new line

* Updated spacing

* File fix WIP

* Updated to clang 13

* updated comment style

* Removed old comment code
This commit is contained in:
jLynx 2023-05-19 08:16:05 +12:00 committed by GitHub
parent 7aca7ce74d
commit 033c4e9a5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
599 changed files with 70746 additions and 66896 deletions

View file

@ -36,12 +36,14 @@ namespace ais {
// sample=38.4k, deviation=2400, symbol=9600
// Length: 4 taps, 1 symbol, 1/4 cycle of sinusoid
// Gain: 1.0 (sinusoid / len(taps))
constexpr std::array<std::complex<float>, 4> square_taps_38k4_1t_p { {
{ 0.25000000f, 0.00000000f }, { 0.23096988f, 0.09567086f },
{ 0.17677670f, 0.17677670f }, { 0.09567086f, 0.23096988f },
} };
constexpr std::array<std::complex<float>, 4> square_taps_38k4_1t_p{{
{0.25000000f, 0.00000000f},
{0.23096988f, 0.09567086f},
{0.17677670f, 0.17677670f},
{0.09567086f, 0.23096988f},
}};
} /* namespace ais */
} /* namespace baseband */
#endif/*__AIS_BASEBAND_H__*/
#endif /*__AIS_BASEBAND_H__*/