RadioHead dependency in source code

This commit is contained in:
2021-04-10 12:30:04 +02:00
parent 06221f9299
commit 4c6875665c
191 changed files with 39550 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
#
# simBuild
# build a RadioHead example sketch for running as a simulated process
# on Linux.
#
# usage: simBuild sketchname.pde
# The executable will be saved in the current directory
INPUT=$1
OUTPUT=$(basename $INPUT ".pde")
g++ -g -I . -I RHutil -x c++ $INPUT tools/simMain.cpp RHGenericDriver.cpp RHMesh.cpp RHRouter.cpp RHReliableDatagram.cpp RHDatagram.cpp RH_TCP.cpp RH_Serial.cpp RHCRC.cpp RHutil/HardwareSerial.cpp -o $OUTPUT