25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

9 satır
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