You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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
|