Skip to content

Commit 120a1a6

Browse files
committed
CI fixes
1 parent 987a1bb commit 120a1a6

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

lib/Espfc/src/Output/OutputIBUS.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
#include "Device/SerialDevice.h"
4-
#include "Utils/Timer.h"
4+
#include "Timer.h"
55

66
namespace Espfc::Output {
77

@@ -45,7 +45,7 @@ class OutputIBUS
4545

4646
private:
4747
Device::SerialDevice* _serial;
48-
Utils::Timer _timer;
48+
Timer _timer;
4949
};
5050

5151
}

lib/Espfc/src/SerialManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,11 @@ int FAST_CODE_ATTR SerialManager::update()
183183
{
184184
_telemetry.process(*stream);
185185
}
186-
}
187186

188187
if(sc.functionMask & SERIAL_FUNCTION_TELEMETRY_IBUS)
189188
{
190189
_ibus.update();
190+
}
191191

192192
#ifdef ESPFC_SERIAL_SOFT_0_WIFI
193193
if(_current == SERIAL_SOFT_0)

test/test_input_crsf/test_input_crsf.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,6 @@ void test_input_ibus_rc_valid()
298298
memset(&frame, 0, sizeof(frame));
299299
uint8_t * frame_data = reinterpret_cast<uint8_t*>(&frame);
300300

301-
When(Method(ArduinoFake(), micros)).Return(0);
302-
303301
input.begin(nullptr);
304302

305303
// const uint8_t data[] = {

0 commit comments

Comments
 (0)