mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
70f445e7f1
modified: Makefile modified: RcAioPRU.p modified: RcAioPRUTest.c modified: RcAioPRU_BBBLUE_bin.h modified: RcAioPRU_BBBMINI_bin.h modified: RcAioPRU_POCKET_bin.h new file: start_test
16 lines
515 B
Makefile
16 lines
515 B
Makefile
RcAioPRU: RcAioPRU.p
|
|
pasm -V3 -c RcAioPRU.p RcAioPRU_BBBMINI -DBBBMINI
|
|
pasm -V3 -c RcAioPRU.p RcAioPRU_BBBLUE -DBBBLUE
|
|
pasm -V3 -c RcAioPRU.p RcAioPRU_POCKET -DPOCKET
|
|
|
|
debug: RcAioPRU.p
|
|
pasm -V3 -c RcAioPRU.p RcAioPRU_BBBMINI -DBBBMINI -DDEBUG
|
|
pasm -V3 -c RcAioPRU.p RcAioPRU_BBBLUE -DBBBLUE -DDEBUG
|
|
pasm -V3 -c RcAioPRU.p RcAioPRU_POCKET -DPOCKET -DDEBUG
|
|
|
|
test: RcAioPRUTest.c
|
|
gcc -g -o RcAioPRUTest RcAioPRUTest.c
|
|
|
|
clean:
|
|
rm RcAioPRU_BBBMINI_bin.h RcAioPRU_BBBLUE_bin.h RcAioPRU_POCKET_bin.h RcAioPRUTest
|