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

9 行
248 B

  1. if [ $(uname) == "Darwin" ]; then
  2. echo "MacOS detected"
  3. brew install make cmake avrdude avr-libc
  4. else
  5. echo "Debian based linux detected"
  6. sudo apt-get update
  7. sudo apt-get install gcc-avr binutils-avr avr-libc cmake make gdb-avr avrdude
  8. fi