myersg@SOI-MYERSG:~$ cd home bash: cd: home: No such file or directory myersg@SOI-MYERSG:~$ cd hellorgb bash: cd: hellorgb: No such file or directory myersg@SOI-MYERSG:~$ dir blink echoc Pictures blinkc examples.desktop Public Desktop hellobus Templates documentation\ embedded.odt hellorbg Untitled\ Document Documents helloreflect Untitled\ Document~ Downloads Music Videos myersg@SOI-MYERSG:~$ hellorgb hellorgb: command not found myersg@SOI-MYERSG:~$ cd hellorgb bash: cd: hellorgb: No such file or directory myersg@SOI-MYERSG:~$ cd .. myersg@SOI-MYERSG:/home$ cd hellorgb bash: cd: hellorgb: No such file or directory myersg@SOI-MYERSG:/home$ cd hellorbg bash: cd: hellorbg: No such file or directory myersg@SOI-MYERSG:/home$ cd hellorgb bash: cd: hellorgb: No such file or directory myersg@SOI-MYERSG:/home$ cd myersg myersg@SOI-MYERSG:~$ cd hellorgb myersg@SOI-MYERSG:~/hellorgb$ make avr-gcc -mmcu=attiny45 -Wall -Os -DF_CPU=8000000 -I./ -o hello.RGB.45.out hello.RGB.45.c avr-objcopy -O ihex hello.RGB.45.out hello.RGB.45.c.hex;\ avr-size --mcu=attiny45 --format=avr hello.RGB.45.out AVR Memory Usage ---------------- Device: attiny45 Program: 338 bytes (8.3% Full) (.text + .data + .bootloader) Data: 0 bytes (0.0% Full) (.data + .bss + .noinit) myersg@SOI-MYERSG:~/hellorgb$ sudo make program-avrisp2 [sudo] password for myersg: avr-objcopy -O ihex hello.RGB.45.out hello.RGB.45.c.hex;\ avr-size --mcu=attiny45 --format=avr hello.RGB.45.out AVR Memory Usage ---------------- Device: attiny45 Program: 338 bytes (8.3% Full) (.text + .data + .bootloader) Data: 0 bytes (0.0% Full) (.data + .bss + .noinit) avrdude -p t45 -P usb -c avrisp2 -U flash:w:hello.RGB.45.c.hex avrdude: AVR device initialized and ready to accept instructions Reading | ################################################## | 100% 0.00s 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.RGB.45.c.hex" avrdude: input file hello.RGB.45.c.hex auto detected as Intel Hex avrdude: writing flash (338 bytes): Writing | ################################################## | 100% 0.12s avrdude: 338 bytes of flash written avrdude: verifying flash memory against hello.RGB.45.c.hex: avrdude: load data flash data from input file hello.RGB.45.c.hex: avrdude: input file hello.RGB.45.c.hex auto detected as Intel Hex avrdude: input file hello.RGB.45.c.hex contains 338 bytes avrdude: reading on-chip flash data: Reading | ################################################## | 100% 0.12s avrdude: verifying ... avrdude: 338 bytes of flash verified avrdude: safemode: Fuses OK (H:FF, E:DF, L:62) avrdude done. Thank you. myersg@SOI-MYERSG:~/hellorgb$