more cleanup
This commit is contained in:
parent
1cc6f82e5c
commit
1ba9653578
1 changed files with 8 additions and 10 deletions
|
@ -1,7 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <queue>
|
||||
//#include <string>
|
||||
|
||||
#include "settings.h"
|
||||
#include "sidetone.h"
|
||||
|
@ -14,7 +13,6 @@ class Keyer final
|
|||
|
||||
void setMode(Mode mode) { m_mode = mode; }
|
||||
void setSpeed(uint8_t wpm);
|
||||
//void sendMessage(std::string msg);
|
||||
void sendCharacter(const char ch);
|
||||
|
||||
void run();
|
||||
|
@ -54,7 +52,7 @@ class Keyer final
|
|||
|
||||
std::queue<char> m_messageQueue;
|
||||
MessageState m_messageKeyingState {MessageState::Wait};
|
||||
char m_messageChar{};
|
||||
char m_messageChar {};
|
||||
|
||||
uint64_t m_elementDuration {0};
|
||||
bool m_currentlyKeying {false};
|
||||
|
|
Loading…
Reference in a new issue