code beautifying
This commit is contained in:
parent
8f855aa3b9
commit
d86525473a
4 changed files with 16 additions and 16 deletions
|
@ -186,7 +186,7 @@ SpaceAfterTemplateKeyword: true
|
|||
SpaceAroundPointerQualifiers: Default
|
||||
SpaceBeforeAssignmentOperators: true
|
||||
SpaceBeforeCaseColon: false
|
||||
SpaceBeforeCpp11BracedList: false
|
||||
SpaceBeforeCpp11BracedList: true
|
||||
SpaceBeforeCtorInitializerColon: true
|
||||
SpaceBeforeInheritanceColon: true
|
||||
SpaceBeforeJsonColon: false
|
||||
|
|
20
src/keyer.h
20
src/keyer.h
|
@ -25,19 +25,19 @@ class Keyer final
|
|||
Abort,
|
||||
};
|
||||
|
||||
uint8_t m_wpm{18};
|
||||
Mode m_mode{Mode::IAMBIC_B};
|
||||
uint8_t m_wpm {18};
|
||||
Mode m_mode {Mode::IAMBIC_B};
|
||||
|
||||
absolute_time_t m_keying_until{0};
|
||||
absolute_time_t m_pausing_until{0};
|
||||
absolute_time_t m_keying_until {0};
|
||||
absolute_time_t m_pausing_until {0};
|
||||
|
||||
Sidetone m_buzzer;
|
||||
Sidetone m_audioOut;
|
||||
|
||||
State m_state{State::Wait};
|
||||
State m_previousState{State::Wait};
|
||||
uint64_t m_elementDuration{0};
|
||||
bool m_currentlyKeying{false};
|
||||
bool m_currentlyPausing{false};
|
||||
bool m_keyNextIambicB{false};
|
||||
State m_state {State::Wait};
|
||||
State m_previousState {State::Wait};
|
||||
uint64_t m_elementDuration {0};
|
||||
bool m_currentlyKeying {false};
|
||||
bool m_currentlyPausing {false};
|
||||
bool m_keyNextIambicB {false};
|
||||
};
|
|
@ -10,10 +10,10 @@ enum class Mode : uint8_t {
|
|||
};
|
||||
|
||||
struct Settings {
|
||||
uint16_t magic_number{MAGIC_NUMBER}; // Bytes: 2
|
||||
Mode mode{Mode::IAMBIC_B}; // Bytes: 1
|
||||
uint8_t wpm{18}; // Bytes: 1
|
||||
uint8_t dummy[FLASH_PAGE_SIZE - 4]{0}; // Sum : 4
|
||||
uint16_t magic_number {MAGIC_NUMBER}; // Bytes: 2
|
||||
Mode mode {Mode::IAMBIC_B}; // Bytes: 1
|
||||
uint8_t wpm {18}; // Bytes: 1
|
||||
uint8_t dummy[FLASH_PAGE_SIZE - 4] {0}; // Sum : 4
|
||||
};
|
||||
|
||||
void store_settings(Settings &settings);
|
||||
|
|
|
@ -9,5 +9,5 @@ class Sidetone
|
|||
void off();
|
||||
|
||||
private:
|
||||
uint m_gpio{0};
|
||||
uint m_gpio {0};
|
||||
};
|
Loading…
Reference in a new issue