Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/g4klx/MMDVM
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Naylor committed Jan 30, 2019
2 parents 03716da + 9987140 commit f785a52
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions CalPOCSAG.cpp
Expand Up @@ -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,
Expand All @@ -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)
Expand Down

0 comments on commit f785a52

Please sign in to comment.