選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12345678
  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