Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Director(y)? I hardly know 'er! #12

Merged
merged 1 commit into from
Mar 19, 2024
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ add_library(${PROJECT_NAME} STATIC)

# Add sources
target_sources(${PROJECT_NAME} PRIVATE
src/HUDL/HUDL.cpp
src/HUDL.cpp
)

###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion include/HUDL/HUDL.hpp → include/HUDL.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <EVT/io/CANopen.hpp>
#include <EVT/io/GPIO.hpp>
#include <EVT/io/SPI.hpp>
#include <HUDL/HUDL.hpp>
#include <HUDL.hpp>

#define REFRESH_RATE 16128

Expand Down
2 changes: 1 addition & 1 deletion src/HUDL/HUDL.cpp → src/HUDL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <EVT/io/GPIO.hpp>
#include <EVT/io/SPI.hpp>
#include <EVT/utils/log.hpp>
#include <HUDL/HUDL.hpp>
#include <HUDL.hpp>
#include <cstdio>
#include <cstring>

Expand Down
2 changes: 1 addition & 1 deletion targets/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Add all targets
add_subdirectory(HUDL)
add_subdirectory(DEV1-HUDL)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include(${EVT_CORE_DIR}/cmake/evt-core_build.cmake)

project(HUDLmain)
project(DEV1-HUDL)
cmake_minimum_required(VERSION 3.15)

make_exe(${PROJECT_NAME} main.cpp)
Expand Down
2 changes: 1 addition & 1 deletion targets/HUDL/main.cpp → targets/DEV1-HUDL/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <EVT/utils/log.hpp>
#include <EVT/utils/time.hpp>

#include <HUDL/HUDL.hpp>
#include <HUDL.hpp>

namespace IO = EVT::core::IO;
namespace DEV = EVT::core::DEV;
Expand Down
Loading