Complete the CW keyer.

This commit is contained in:
Jonathan Naylor 2020-04-16 21:15:15 +01:00
parent 4a5f985d02
commit 95e76f387c
3 changed files with 63 additions and 18 deletions

View file

@ -35,11 +35,15 @@ public:
bool isRunning() const;
private:
q15_t m_level;
bool m_wanted;
bool m_running;
uint8_t m_poBuffer[1000U];
uint16_t m_poLen;
uint16_t m_poPos;
uint16_t m_dotLen;
uint16_t m_dotPos;
q15_t* m_audio;
uint16_t m_audioLen;
uint16_t m_audioPos;
};
#endif