您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- 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
|