mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-29 07:36:46 +00:00
Fix build for other variants
This commit is contained in:
parent
42e4759634
commit
20f68929c8
@ -1,6 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
// This is a non-interrupt version of RotaryEncoder which is based on a debounce inherent FSM table (see RotaryEncoder library)
|
||||
#ifdef T_LORA_PAGER
|
||||
|
||||
// This is a version of RotaryEncoder which is based on a debounce inherent FSM table (see RotaryEncoder library)
|
||||
|
||||
#include "InputBroker.h"
|
||||
#include "concurrency/OSThread.h"
|
||||
@ -33,3 +35,5 @@ class RotaryEncoderImpl : public Observable<const InputEvent *>, public concurre
|
||||
};
|
||||
|
||||
extern RotaryEncoderImpl *rotaryEncoderImpl;
|
||||
|
||||
#endif
|
||||
|
||||
@ -3,7 +3,9 @@
|
||||
#include "buzz/BuzzerFeedbackThread.h"
|
||||
#include "input/ExpressLRSFiveWay.h"
|
||||
#include "input/InputBroker.h"
|
||||
#ifdef T_LORA_PAGER
|
||||
#include "input/RotaryEncoderImpl.h"
|
||||
#endif
|
||||
#include "input/RotaryEncoderInterruptImpl1.h"
|
||||
#include "input/SerialKeyboardImpl.h"
|
||||
#include "input/UpDownInterruptImpl1.h"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user