This commit is contained in:
Thomas Göttgens 2023-03-11 22:48:08 +01:00
parent a83d5ada86
commit 0d001423c8
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
#endif
#ifndef DELAY_FOREVER
#define DELAY_FOREVER portMAX_DELAY
#define DELAY_FOREVER portMAX_DELAY
#endif
#ifdef HAS_PMU

View File

@ -2,7 +2,7 @@
#include "InputBroker.h"
#include "concurrency/OSThread.h"
#include "mesh/generated/meshtastic/module_config.pb.h"
#include "mesh/NodeDB.h"
enum RotaryEncoderInterruptBaseStateType { ROTARY_EVENT_OCCURRED, ROTARY_EVENT_CLEARED };

View File

@ -1,7 +1,7 @@
#pragma once
#include "InputBroker.h"
#include "mesh/nodeDB.h"
#include "mesh/NodeDB.h"
class UpDownInterruptBase : public Observable<const InputEvent *>
{

View File

@ -1,8 +1,8 @@
#pragma once
#include "InputBroker.h"
#include "concurrency/OSThread.h"
#include "Wire.h"
#include "concurrency/OSThread.h"
class KbI2cBase : public Observable<const InputEvent *>, public concurrency::OSThread
{