Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rtlopez committed Feb 4, 2025
1 parent 987a1bb commit 120a1a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/Espfc/src/Output/OutputIBUS.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include "Device/SerialDevice.h"
#include "Utils/Timer.h"
#include "Timer.h"

namespace Espfc::Output {

Expand Down Expand Up @@ -45,7 +45,7 @@ class OutputIBUS

private:
Device::SerialDevice* _serial;
Utils::Timer _timer;
Timer _timer;
};

}
2 changes: 1 addition & 1 deletion lib/Espfc/src/SerialManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ int FAST_CODE_ATTR SerialManager::update()
{
_telemetry.process(*stream);
}
}

if(sc.functionMask & SERIAL_FUNCTION_TELEMETRY_IBUS)
{
_ibus.update();
}

#ifdef ESPFC_SERIAL_SOFT_0_WIFI
if(_current == SERIAL_SOFT_0)
Expand Down
2 changes: 0 additions & 2 deletions test/test_input_crsf/test_input_crsf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,6 @@ void test_input_ibus_rc_valid()
memset(&frame, 0, sizeof(frame));
uint8_t * frame_data = reinterpret_cast<uint8_t*>(&frame);

When(Method(ArduinoFake(), micros)).Return(0);

input.begin(nullptr);

// const uint8_t data[] = {
Expand Down

0 comments on commit 120a1a6

Please sign in to comment.