Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. Warning: Board Move38:avr:build doesn't define a 'build.board' preference. Auto-set to: AVR_BUILD
  2.  
  3. ArduinohardwareMove38avrboards.txt
  4.  
  5. tile.name=Blinks Tile
  6. tile.upload.tool=avrdude
  7. tile.upload.protocol=avrisp
  8. tile.upload.maximum_size=15872
  9. tile.upload.maximum_data_size=1024
  10.  
  11. tile.build.core=blinks
  12. tile.build.board=AVR_Blink
  13.  
  14. # Note that we actually boot up with DIV8 fuse programmed, so
  15. # only running at 1Mhz. Then we switch the prescaller to /2 in init()
  16. # so we are at 4Mhz by the time user code runs.
  17. # This is done becuase 8Mhz might need a higher voltage than our battery can
  18. # supply.
  19.  
  20. tile.build.mcu=atmega168pb
  21.  
  22. tile.c.extra_flags=-Wextra -flto
  23. tile.c.elf.extra_flags=-w -flto
  24. tile.cpp.extra_flags=-Wextra -flto
  25. tile.ltoarcmd=avr-gcc-ar
  26.  
  27. # set F_CPU to 1Mhz for all boards on this platform
  28. build.f_cpu=1000000L
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement