Skip to content

Commit

Permalink
Added support for the piXtend platform
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoralves authored Oct 27, 2016
1 parent 2bbccc1 commit ddfabf0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build_win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ echo
echo
echo The OpenPLC needs a driver to be able to control physical or virtual hardware.
echo Please select the driver you would like to use:
OPTIONS="Blank Modbus Fischertechnik RaspberryPi Unipi Arduino ESP8266 Arduino+RaspberryPi Simulink "
OPTIONS="Blank Modbus Fischertechnik RaspberryPi UniPi PiXtend Arduino ESP8266 Arduino+RaspberryPi Simulink "
select opt in $OPTIONS; do
if [ "$opt" = "Blank" ]; then
cp ./hardware_layers/blank.cpp ./hardware_layer.cpp
Expand Down Expand Up @@ -65,6 +65,13 @@ select opt in $OPTIONS; do
cd ..
./build_core.sh
exit
elif [ "$opt" = "PiXtend" ]; then
cp ./hardware_layers/pixtend.cpp ./hardware_layer.cpp
cp ./core_builders/build_rpi.sh ../build_core.sh
echo [OPENPLC]
cd ..
./build_core.sh
exit
elif [ "$opt" = "Arduino" ]; then
cp ./hardware_layers/arduino.cpp ./hardware_layer.cpp
cp ./core_builders/build_normal.sh ../build_core.sh
Expand Down

0 comments on commit ddfabf0

Please sign in to comment.