snader@Duck:~/Documents/fabacademy/11 Input devices/Temperature board$ ls -al total 32 drwxrwxr-x 2 snader snader 4096 apr 18 16:52 . drwxrwxr-x 3 snader snader 4096 apr 18 16:52 .. -rw-rw-r-- 1 snader snader 3725 apr 18 16:50 hello.temp.45.c -rw-rw-r-- 1 snader snader 809 apr 18 16:51 hello.temp.45.make snader@Duck:~/Documents/fabacademy/11 Input devices/Temperature board$ sudo make -f hello.temp.45.make program-usbtiny [sudo] password for snader: avr-gcc -mmcu=attiny45 -Wall -Os -DF_CPU=8000000 -I./ -o hello.temp.45.out hello.temp.45.c avr-objcopy -O ihex hello.temp.45.out hello.temp.45.c.hex;\ avr-size --mcu=attiny45 --format=avr hello.temp.45.out AVR Memory Usage ---------------- Device: attiny45 Program: 504 bytes (12.3% Full) (.text + .data + .bootloader) Data: 1 bytes (0.4% Full) (.data + .bss + .noinit) avrdude -p t45 -P usb -c usbtiny -U flash:w:hello.temp.45.c.hex avrdude: AVR device initialized and ready to accept instructions Reading | ################################################## | 100% 0.01s avrdude: Device signature = 0x1e9206 avrdude: NOTE: "flash" memory has been specified, an erase cycle will be performed To disable this feature, specify the -D option. avrdude: erasing chip avrdude: reading input file "hello.temp.45.c.hex" avrdude: input file hello.temp.45.c.hex auto detected as Intel Hex avrdude: writing flash (504 bytes): Writing | ################################################## | 100% 0.34s avrdude: 504 bytes of flash written avrdude: verifying flash memory against hello.temp.45.c.hex: avrdude: load data flash data from input file hello.temp.45.c.hex: avrdude: input file hello.temp.45.c.hex auto detected as Intel Hex avrdude: input file hello.temp.45.c.hex contains 504 bytes avrdude: reading on-chip flash data: Reading | ################################################## | 100% 0.54s avrdude: verifying ... avrdude: 504 bytes of flash verified avrdude: safemode: Fuses OK (H:FF, E:DF, L:E2) avrdude done. Thank you.