Fix damn typo

This commit is contained in:
phl0 2019-01-30 14:49:21 +01:00
parent 6b00f7d27a
commit 9987140790
No known key found for this signature in database
GPG Key ID: 48EA1E640798CA9A
1 changed files with 7 additions and 7 deletions

View File

@ -20,8 +20,8 @@
#include "Globals.h"
#include "CalPOCSAG.h"
// POCSAG 600 Hz Test Pattern
q15_t squreHz[] = {
// POCSAG 600 Hz Square Wave Test Pattern
q15_t square600Hz[] = {
950, 950, 950, 950, 950, 950, 950, 950, 950,
950, 950, 950, 950, 950, 950, 950, 950, 950,
-950, -950, -950, -950, -950, -950, -950, -950, -950,
@ -42,11 +42,11 @@ void CCalPOCSAG::process()
if (space <= 205U)
return;
io.write(STATE_POCSAG, squreHz, 40U);
io.write(STATE_POCSAG, squreHz, 40U);
io.write(STATE_POCSAG, squreHz, 40U);
io.write(STATE_POCSAG, squreHz, 40U);
io.write(STATE_POCSAG, squreHz, 40U);
io.write(STATE_POCSAG, square600Hz, 40U);
io.write(STATE_POCSAG, square600Hz, 40U);
io.write(STATE_POCSAG, square600Hz, 40U);
io.write(STATE_POCSAG, square600Hz, 40U);
io.write(STATE_POCSAG, square600Hz, 40U);
}
uint8_t CCalPOCSAG::write(const uint8_t* data, uint8_t length)