Mini Milestone: Driver loads and connects.

This commit is contained in:
2025-12-18 16:26:51 +01:00
parent b5ed3ff733
commit 2acf280c55
20 changed files with 5407 additions and 59 deletions

View File

@@ -8,7 +8,7 @@ CONFIG += c++20
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += . static lib
INCLUDEPATH += . lib
linux {
#LIBS += -lpigpio -lpigpiod_if2 -lrt
@@ -17,7 +17,7 @@ linux {
windows
{
LIBS += -L$$PWD/can_api -lmhstcan -lAdvapi32
#LIBS += -L$$PWD/can_api -lmhstcan -lAdvapi32
}
# You can make your code fail to compile if it uses deprecated APIs.
@@ -25,6 +25,10 @@ windows
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
bc.cpp \
lib/can_drv_win.c \
bccandriver.cpp \
bccandrivertinycan.cpp \
bccommand.cpp \
bccommandrunner.cpp \
bcvalue.cpp \
@@ -36,6 +40,8 @@ SOURCES += \
HEADERS += \
bc.h \
bccandriver.h \
bccandrivertinycan.h \
bccommand.h \
bccommandrunner.h \
bcmainwindow.h \