Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion applications/nucleo-demo/include/Demo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include "jarnax/Ticker.hpp"
#include "jarnax/Timer.hpp"
#include "jarnax/i2c/Driver.hpp"
#include "jarnax/net/ethernet/Driver.hpp"
#include "jarnax/usart/Driver.hpp"

using jarnax::Loopable;
Expand Down
2 changes: 1 addition & 1 deletion applications/nucleo-demo/source/GlobalContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class GlobalContext : public Context {
result &= GetSuperLoop().Enlist(jarnax::GetBoardContext().GetI2cB());
result &= GetSuperLoop().Enlist(jarnax::GetBoardContext().GetSpiA());
result &= GetSuperLoop().Enlist(jarnax::GetBoardContext().GetUsartB());
result &= GetSuperLoop().Enlist(jarnax::GetBoardContext().GetEthernet());
// result &= GetSuperLoop().Enlist(jarnax::GetBoardContext().GetEthernet());
result &= GetSuperLoop().Enlist(console_);
if (result) {
return core::Status{};
Expand Down
2 changes: 1 addition & 1 deletion boards/nucleo_h753zi/include/BoardContext.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class BoardContext {
jarnax::console::Service& GetConsole();

/// Return the Ethernet Driver
jarnax::net::ethernet::Driver& GetEthernet();
// jarnax::net::ethernet::Driver& GetEthernet();

protected:
stm32::Timer timer_;
Expand Down
1 change: 1 addition & 0 deletions boards/nucleo_h753zi/source/BoardContext.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <compiler.hpp>

#include "BoardContext.hpp"
#include <cortex/linker.hpp>
#include "configure.hpp"
#include "cortex/mcu.hpp"
#include "jarnax.hpp"
Expand Down
Loading