6 Commits

Author SHA1 Message Date
8f7bb757a4 core update 2020-10-12 22:03:06 +02:00
c346d1b27d renamed submodule 2020-10-12 22:02:10 +02:00
a0dc6f1017 new submodule is fork now 2020-10-12 22:01:28 +02:00
9302f11e15 core update 2020-10-12 22:00:21 +02:00
cf6253216f another line break added 2020-10-12 21:45:36 +02:00
bf94f8332b makefile lines split 2020-10-12 20:45:41 +02:00
4 changed files with 15 additions and 8 deletions

4
.gitmodules vendored
View File

@ -1,3 +1,3 @@
[submodule "arduino_core"]
[submodule "arduino"]
path = arduino_core
url = https://egit.irs.uni-stuttgart.de/mohr/arduino_core.git
url = https://egit.irs.uni-stuttgart.de/eive/arduino_core.git

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
TARGET = ArduinoIO
# The C source files
SRC =
# The C++ source files
PSRC += main.cpp
PSRC += $(wildcard helper/*.cpp)
PSRC += arduino_core/ArduinoCore-avr/libraries/SPI/src/SPI.cpp
# extra Arduino libraries
ARDLIBS =
# this line includes the Makefile.base
include arduino_core/arduino-base.mk

View File

@ -1,5 +0,0 @@
TARGET = ArduinoIO
SRC = # the C source files
PSRC = main.cpp $(wildcard helper/*.cpp) arduino_core/ArduinoCore-avr/libraries/SPI/src/SPI.cpp # the C++ source files
ARDLIBS = # extra Arduino libraries
include arduino_core/arduino-base.mk # this line includes the Makefile.base