Skip to content

Commit 00eec29

Browse files
committed
Updated includes and namespaces for LVSS current sensor
1 parent 24810c5 commit 00eec29

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

targets/REV3-ACS71240/main.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
* LVSS using the ACS71240 IC.
44
*/
55

6-
#include <EVT/io/UART.hpp>
7-
#include <EVT/io/pin.hpp>
8-
#include <EVT/manager.hpp>
9-
#include <EVT/utils/log.hpp>
10-
#include <EVT/utils/time.hpp>
6+
#include <core/io/UART.hpp>
7+
#include <core/io/pin.hpp>
8+
#include <core/manager.hpp>
9+
#include <core/utils/log.hpp>
10+
#include <core/utils/time.hpp>
1111
#include <LVSS.hpp>
1212

13-
namespace IO = EVT::core::IO;
14-
namespace DEV = EVT::core::DEV;
15-
namespace time = EVT::core::time;
16-
namespace log = EVT::core::log;
13+
namespace IO = core::io;
14+
namespace DEV = core::dev;
15+
namespace time = core::time;
16+
namespace log = core::log;
1717

1818
int main() {
1919
// Initialize system
20-
EVT::core::platform::init();
20+
core::platform::init();
2121

2222
// Setup UART
2323
IO::UART& uart = IO::getUART<IO::Pin::UART_TX, IO::Pin::UART_RX>(9600);

0 commit comments

Comments
 (0)