Browse Source

Added setup script

master
BinHong Lee 7 years ago
parent
commit
8c2ccc6bb7
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      unix.sh

+ 8
- 0
unix.sh View File

@@ -0,0 +1,8 @@
if [ $(uname) == "Darwin" ]; then
echo "MacOS detected"
brew install make cmake avrdude avr-libc
else
echo "Debian based linux detected"
sudo apt-get update
sudo apt-get install gcc-avr binutils-avr avr-libc cmake make gdb-avr avrdude
fi

Loading…
Cancel
Save