Skip to content

Commit e2beae9

Browse files
committedJan 31, 2021
There was a tab hiding in there!
How had that little fucker hidden from travis?! Death to tabs! Long live spaces!
1 parent c9ef68e commit e2beae9

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed
 

‎makefile.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,9 @@ Examining the Makefile below as well as its
3535
console output, also below, will provide one example to help guide
3636
you.
3737

38-
Assuming that your installation of ATTinyCore resides at
39-
~/Arduino/hardware then entering this grep command will provide a
40-
useful list of ATTinyCore options for your chosen processor (selected from the list below).
38+
Assuming that your installation of ATTinyCore resides at `~/Arduino/hardware` then entering this grep command will provide a useful list of ATTinyCore options for your chosen processor (selected from the list below).
4139
**NOTE:** this Linux command requires [Cygwin](https://www.cygwin.com/) on Microsoft Windows.
42-
43-
**grep attinyx5 ~/Arduino/hardware/ATTinyCore/avr/boards.txt**
40+
`grep attinyx5 ~/Arduino/hardware/ATTinyCore/avr/boards.txt`
4441

4542
At the time this was written, these are the ATtiny chips supported by ATTinyCore:
4643

@@ -194,7 +191,7 @@ mkdir -p /home/username/Arduino/ULPFlasher3/attinyx5/bin
194191
/home/username/arduino-1.6.11/hardware/tools/avr/bin/avr-g++ -x c++ -include Arduino.h -MMD -c -mmcu=attiny85 -DF_CPU=8000000L -DARDUINO=1611 -DARDUINO_ARCH_AVR -D__PROG_TYPES_COMPAT__ -I/home/username/Arduino/hardware/ATTinyCore/avr/cores/tiny -I/home/username/Arduino/hardware/ATTinyCore/avr/variants/tinyX5 -Wall -ffunction-sections -fdata-sections -Os -pedantic -Wall -Wextra -fpermissive -fno-exceptions -std=gnu++11 ULPFlasher3.ino -o /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.ino.o
195192
/home/username/arduino-1.6.11/hardware/tools/avr/bin/avr-gcc -mmcu=attiny85 -Wl,--gc-sections -Os -flto -fuse-linker-plugin -o /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.elf /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.ino.o /home/username/Arduino/ULPFlasher3/attinyx5/bin/libcore.a -lc -lm
196193
/home/username/arduino-1.6.11/hardware/tools/avr/bin/avr-objcopy -j .eeprom --set-section-flags=.eeprom='alloc,load' \
197-
--no-change-warnings --change-section-lma .eeprom=0 -O ihex /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.elf /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.eep
194+
--no-change-warnings --change-section-lma .eeprom=0 -O ihex /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.elf /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.eep
198195
/home/username/arduino-1.6.11/hardware/tools/avr/bin/avr-objcopy -O ihex -R .eeprom /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.elf /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.hex
199196
200197
/home/username/arduino-1.6.11/hardware/tools/avr/bin/avr-size --mcu=attiny85 -C --format=avr /home/username/Arduino/ULPFlasher3/attinyx5/bin/ULPFlasher3.elf

0 commit comments

Comments
 (0)
Please sign in to comment.