This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
avrdude -p m1280 -P COM3 -c avrisp -b 19200 -U eeprom:r:eeprom_dump.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----------------------------------------------------------------- | |
A = £xy.y(xxy) | |
T = AA | |
for any term F: | |
TF = AAF | |
= (£xy.y(xxy)) (£xy.y(xxy)) F | |
= (£y.y( (£xy.y(xxy)) (£xy.y(xxy)) y)) F | |
= F( (£xy.y(xxy)) (£xy.y(xxy)) F) | |
= F( A A F) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
** Scheme ** | |
(define makeaccount | |
(lambda (balance) | |
(lambda (amt) | |
(begin (set! balance (+ balance amt)) | |
balance)))) | |
<==> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
avr-size --mcu=$(MCU) --format=avr -C $(PROGRAM).elf |