├── Code ├── AVR Tutorial Code │ ├── UART │ │ ├── Debug │ │ │ ├── UART.eep │ │ │ ├── main.o │ │ │ ├── UART.elf │ │ │ ├── makedep.mk │ │ │ ├── UART.hex │ │ │ └── UART.srec │ │ ├── .vs │ │ │ └── UART │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── UART.atsln │ ├── Timer0 │ │ ├── Debug │ │ │ ├── 12a-Timer0.eep │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── 12a-Timer0.elf │ │ │ ├── makedep.mk │ │ │ ├── 12a-Timer0.hex │ │ │ └── 12a-Timer0.srec │ │ ├── .vs │ │ │ └── 12a-Timer0 │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ ├── main.c │ │ └── 12a-Timer0.atsln │ ├── Timer1 │ │ ├── Debug │ │ │ ├── 12b-Timer1.eep │ │ │ ├── main.o │ │ │ ├── 12b-Timer1.elf │ │ │ ├── makedep.mk │ │ │ ├── 12b-Timer1.hex │ │ │ └── 12b-Timer1.srec │ │ ├── Release │ │ │ ├── 12b-Timer1.eep │ │ │ ├── main.o │ │ │ ├── 12b-Timer1.elf │ │ │ ├── makedep.mk │ │ │ ├── 12b-Timer1.hex │ │ │ └── 12b-Timer1.srec │ │ ├── .vs │ │ │ └── 12b-Timer1 │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ ├── main.c │ │ └── 12b-Timer1.atsln │ ├── Blinky with AVR │ │ ├── Debug │ │ │ ├── Blinky with AVR.eep │ │ │ ├── main.o │ │ │ ├── Blinky with AVR.elf │ │ │ ├── makedep.mk │ │ │ ├── Blinky with AVR.hex │ │ │ └── Blinky with AVR.srec │ │ ├── .vs │ │ │ └── Blinky with AVR │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ ├── main.c │ │ └── Blinky with AVR.atsln │ ├── RTC_DS1307_LCD │ │ ├── Debug │ │ │ ├── 09b-RTC_DS1307_LCD.eep │ │ │ ├── gpio.o │ │ │ ├── i2c.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── rtc.o │ │ │ ├── delay.o │ │ │ ├── 09b-RTC_DS1307_LCD.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 09b-RTC_DS1307_LCD │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 09b-RTC_DS1307_LCD.atsln │ ├── UART_Interrupt │ │ ├── Debug │ │ │ ├── 11e-UART_Interrupt.eep │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── delay.o │ │ │ ├── 11e-UART_Interrupt.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 11e-UART_Interrupt │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 11e-UART_Interrupt.atsln │ ├── AVR InterfacingHex Kepad │ │ ├── Debug │ │ │ ├── 10b-Keypad_LCD.eep │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── delay.o │ │ │ ├── keypad.o │ │ │ ├── 10b-Keypad_LCD.elf │ │ │ ├── main.d │ │ │ ├── keypad.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 10b-Keypad_LCD │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 10b-Keypad_LCD.atsln │ ├── Lcd_4bit_Display │ │ ├── Debug │ │ │ ├── 05a-Lcd_4bit_Display.eep │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── 05a-Lcd_4bit_Display.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 05a-Lcd_4bit_Display │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 05a-Lcd_4bit_Display.atsln │ ├── Timer_Interrupt │ │ ├── Debug │ │ │ ├── 11c-Timer_Interrupt.eep │ │ │ ├── main.o │ │ │ ├── 11c-Timer_Interrupt.elf │ │ │ ├── makedep.mk │ │ │ ├── 11c-Timer_Interrupt.hex │ │ │ └── 11c-Timer_Interrupt.srec │ │ ├── .vs │ │ │ └── 11c-Timer_Interrupt │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ ├── main.c │ │ └── 11c-Timer_Interrupt.atsln │ ├── EXT_INTR_Edge_Level │ │ ├── Debug │ │ │ ├── 11b-EXT_INTR_Edge_Level.eep │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── delay.o │ │ │ ├── 11b-EXT_INTR_Edge_Level.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 11b-EXT_INTR_Edge_Level │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ ├── main.c │ │ └── 11b-EXT_INTR_Edge_Level.atsln │ ├── EXT_interrupt_Edge │ │ ├── Debug │ │ │ ├── 11a-EXT_interrupt_Edge.eep │ │ │ ├── lcd.o │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── 11a-EXT_interrupt_Edge.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 11a-EXT_interrupt_Edge │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── main.c │ ├── SevenSegmentFourDigit │ │ ├── Debug │ │ │ ├── 03b-SevenSegmentFourDigit.eep │ │ │ ├── main.o │ │ │ ├── 03b-SevenSegmentFourDigit.elf │ │ │ └── makedep.mk │ │ └── .vs │ │ │ └── 03b-SevenSegmentFourDigit │ │ │ └── v14 │ │ │ └── .atsuo │ ├── Switch and a LED with AVR │ │ ├── Debug │ │ │ ├── Switch and a LED with AVR.eep │ │ │ ├── main.o │ │ │ ├── Switch and a LED with AVR.elf │ │ │ ├── makedep.mk │ │ │ ├── Switch and a LED with AVR.hex │ │ │ └── Switch and a LED with AVR.srec │ │ ├── .vs │ │ │ └── Switch and a LED with AVR │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── main.c │ ├── Reading Temperature with AVR ADC │ │ ├── Debug │ │ │ ├── Reading Temperature with AVR ADC.eep │ │ │ ├── adc.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── delay.o │ │ │ ├── Reading Temperature with AVR ADC.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── Reading Temperature with AVR ADC │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── main.c │ ├── Controlling AC device using Relay_AVR │ │ ├── Debug │ │ │ ├── Controlling AC device using Relay_AVR.eep │ │ │ ├── main.o │ │ │ ├── Controlling AC device using Relay_AVR.elf │ │ │ ├── makedep.mk │ │ │ ├── Controlling AC device using Relay_AVR.hex │ │ │ └── Controlling AC device using Relay_AVR.srec │ │ └── .vs │ │ │ └── Controlling AC device using Relay_AVR │ │ │ └── v14 │ │ │ └── .atsuo │ ├── Interfacing Character LCDs 16X1 with AVR │ │ ├── Debug │ │ │ ├── Interfacing Character LCDs 16X1 with AVR.eep │ │ │ ├── lcd.o │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── main.d │ │ │ ├── Interfacing Character LCDs 16X1 with AVR.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── Interfacing Character LCDs 16X1 with AVR │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── main.c │ ├── Interfacing Character LCDs 20X4 with AVR │ │ ├── Debug │ │ │ ├── Interfacing Character LCDs 20X4 with AVR.eep │ │ │ ├── lcd.o │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── Interfacing Character LCDs 20X4 with AVR.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── Interfacing Character LCDs 20X4 with AVR │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── main.c │ └── GccApplication1 │ │ ├── .vs │ │ └── GccApplication1 │ │ │ └── v14 │ │ │ └── .atsuo │ │ └── GccApplication1.atsln ├── AVR Example Code │ ├── 07a-ADC_UART │ │ ├── Debug │ │ │ ├── 07a-ADC_UART.eep │ │ │ ├── adc.o │ │ │ ├── delay.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── 07a-ADC_UART.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 07a-ADC_UART │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 07a-ADC_UART.atsln │ ├── 07d-ADC_LCD │ │ ├── Debug │ │ │ ├── 07d-ADC_LCD.eep │ │ │ ├── adc.o │ │ │ ├── lcd.o │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── 07d-ADC_LCD.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 07d-ADC_LCD │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 07d-ADC_LCD.atsln │ ├── 02a-SwitchLed │ │ ├── Debug │ │ │ ├── 02a-SwitchLed.eep │ │ │ ├── main.o │ │ │ ├── 02a-SwitchLed.elf │ │ │ ├── makedep.mk │ │ │ ├── 02a-SwitchLed.hex │ │ │ └── 02a-SwitchLed.srec │ │ ├── .vs │ │ │ └── 02a-SwitchLed │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 02a-SwitchLed.atsln │ ├── 10b-Keypad_LCD │ │ ├── Debug │ │ │ ├── 10b-Keypad_LCD.eep │ │ │ ├── lcd.o │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── keypad.o │ │ │ ├── 10b-Keypad_LCD.elf │ │ │ ├── main.d │ │ │ ├── keypad.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 10b-Keypad_LCD │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 10b-Keypad_LCD.atsln │ ├── 11a-TimersLed │ │ ├── Debug │ │ │ ├── 11a-TimersLed.eep │ │ │ ├── main.o │ │ │ ├── timers.o │ │ │ ├── 11a-TimersLed.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 11a-TimersLed │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 11a-TimersLed.atsln │ ├── 12a-PwmLedFade │ │ ├── Debug │ │ │ ├── 12a-PwmLedFade.eep │ │ │ ├── pwm.o │ │ │ ├── delay.o │ │ │ ├── main.o │ │ │ ├── 12a-PwmLedFade.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 12a-PwmLedFade │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 12a-PwmLedFade.atsln │ ├── 01a-LedBlinking │ │ ├── Debug │ │ │ ├── 01a-LedBlinking.eep │ │ │ ├── main.o │ │ │ ├── 01a-LedBlinking.elf │ │ │ ├── makedep.mk │ │ │ └── 01a-LedBlinking.hex │ │ ├── .vs │ │ │ └── 01a-LedBlinking │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 01a-LedBlinking.atsln │ ├── 01b-LedUpCounter │ │ ├── Debug │ │ │ ├── 01b-LedUpCounter.eep │ │ │ ├── main.o │ │ │ ├── 01b-LedUpCounter.elf │ │ │ ├── makedep.mk │ │ │ ├── 01b-LedUpCounter.hex │ │ │ └── 01b-LedUpCounter.srec │ │ ├── .vs │ │ │ └── 01b-LedUpCounter │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 01b-LedUpCounter.atsln │ ├── 06a_UART_Tx_Char │ │ ├── Debug │ │ │ ├── 06a_UART_Tx_Char.eep │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── 06a_UART_Tx_Char.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 06a_UART_Tx_Char │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 06a_UART_Tx_Char.atsln │ ├── 10a-Keypad_UART │ │ ├── Debug │ │ │ ├── 10a-Keypad_UART.eep │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── delay.o │ │ │ ├── keypad.o │ │ │ ├── 10a-Keypad_UART.elf │ │ │ ├── keypad.d │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 10a-Keypad_UART │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 10a-Keypad_UART.atsln │ ├── 06b-UART_Rx_Tx_Lcd │ │ ├── Debug │ │ │ ├── 06b-UART_Rx_Tx_Lcd.eep │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── delay.o │ │ │ ├── 06b-UART_Rx_Tx_Lcd.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 06b-UART_Rx_Tx_Lcd │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 06b-UART_Rx_Tx_Lcd.atsln │ ├── 06c-UART_Tx_String │ │ ├── Debug │ │ │ ├── 06c-UART_Tx_String.eep │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── 06c-UART_Tx_String.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 06c-UART_Tx_String │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 06c-UART_Tx_String.atsln │ ├── 06d-UART_Tx_Numbers │ │ ├── Debug │ │ │ ├── 06d-UART_Tx_Numbers.eep │ │ │ ├── delay.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── 06d-UART_Tx_Numbers.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 06d-UART_Tx_Numbers │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 06d-UART_Tx_Numbers.atsln │ ├── 09a-RTC_DS1307_UART │ │ ├── Debug │ │ │ ├── 09a-RTC_DS1307_UART.eep │ │ │ ├── i2c.o │ │ │ ├── rtc.o │ │ │ ├── delay.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── 09a-RTC_DS1307_UART.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 09a-RTC_DS1307_UART │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 09a-RTC_DS1307_UART.atsln │ ├── 09b-RTC_DS1307_LCD │ │ ├── Debug │ │ │ ├── 09b-RTC_DS1307_LCD.eep │ │ │ ├── gpio.o │ │ │ ├── i2c.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── rtc.o │ │ │ ├── delay.o │ │ │ ├── 09b-RTC_DS1307_LCD.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 09b-RTC_DS1307_LCD │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 09b-RTC_DS1307_LCD.atsln │ ├── 04a-Lcd_8bit_Display │ │ ├── Debug │ │ │ ├── 04a-Lcd_8bit_Display.eep │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── delay.o │ │ │ ├── 04a-Lcd_8bit_Display.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 04a-Lcd_8bit_Display │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 04a-Lcd_8bit_Display.atsln │ ├── 04b-Lcd_8bit_UpCounter │ │ ├── Debug │ │ │ ├── 04b-Lcd_8bit_UpCounter.eep │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── 04b-Lcd_8bit_UpCounter.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 04b-Lcd_8bit_UpCounter │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 04b-Lcd_8bit_UpCounter.atsln │ ├── 04c-Lcd_8bit_Scrolling │ │ ├── Debug │ │ │ ├── 04c-Lcd_8bit_Scrolling.eep │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── 04c-Lcd_8bit_Scrolling.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 04c-Lcd_8bit_Scrolling │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 04c-Lcd_8bit_Scrolling.atsln │ ├── 05a-Lcd_4bit_Display │ │ ├── Debug │ │ │ ├── 05a-Lcd_4bit_Display.eep │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── delay.o │ │ │ ├── 05a-Lcd_4bit_Display.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 05a-Lcd_4bit_Display │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 05a-Lcd_4bit_Display.atsln │ ├── 05b-Lcd_4bit_UpCounter │ │ ├── Debug │ │ │ ├── 05b-Lcd_4bit_UpCounter.eep │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── 05b-Lcd_4bit_UpCounter.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 05b-Lcd_4bit_UpCounter │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 05b-Lcd_4bit_UpCounter.atsln │ ├── 05c-Lcd_4bit_Scrolling │ │ ├── Debug │ │ │ ├── 05c-Lcd_4bit_Scrolling.eep │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── 05c-Lcd_4bit_Scrolling.elf │ │ │ ├── main.d │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ ├── .vs │ │ │ └── 05c-Lcd_4bit_Scrolling │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 05c-Lcd_4bit_Scrolling.atsln │ ├── 08a-Eeprom_Byte_RdWr │ │ ├── Debug │ │ │ ├── 08a-Eeprom_Byte_RdWr.eep │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── delay.o │ │ │ ├── eeprom.o │ │ │ ├── 08a-Eeprom_Byte_RdWr.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 08a-Eeprom_Byte_RdWr │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 08a-Eeprom_Byte_RdWr.atsln │ ├── 08b-Eeprom_String_RdWr │ │ ├── Debug │ │ │ ├── 08b-Eeprom_String_RdWr.eep │ │ │ ├── delay.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── eeprom.o │ │ │ ├── 08b-Eeprom_String_RdWr.elf │ │ │ └── makedep.mk │ │ ├── .vs │ │ │ └── 08b-Eeprom_String_RdWr │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── 08b-Eeprom_String_RdWr.atsln │ ├── 03a-SevenSegment_Single │ │ ├── Debug │ │ │ ├── 03a-SevenSegment_Single.eep │ │ │ ├── main.o │ │ │ ├── 03a-SevenSegment_Single.elf │ │ │ ├── makedep.mk │ │ │ ├── 03a-SevenSegment_Single.hex │ │ │ └── 03a-SevenSegment_Single.srec │ │ └── .vs │ │ │ └── 03a-SevenSegment_Single │ │ │ └── v14 │ │ │ └── .atsuo │ ├── 06e-UART_String_RxTx_Lcd │ │ ├── Debug │ │ │ ├── 06e-UART_String_RxTx_Lcd.eep │ │ │ ├── lcd.o │ │ │ ├── delay.o │ │ │ ├── gpio.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── 06e-UART_String_RxTx_Lcd.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ └── .vs │ │ │ └── 06e-UART_String_RxTx_Lcd │ │ │ └── v14 │ │ │ └── .atsuo │ ├── 07b-Adc_RawValue_Voltage │ │ ├── Debug │ │ │ ├── 07b-Adc_RawValue_Voltage.eep │ │ │ ├── adc.o │ │ │ ├── delay.o │ │ │ ├── main.o │ │ │ ├── uart.o │ │ │ ├── 07b-Adc_RawValue_Voltage.elf │ │ │ └── makedep.mk │ │ ├── 07c-ADC_LM35_TempSensor │ │ │ ├── Debug │ │ │ │ ├── 07c-ADC_LM35_TempSensor.eep │ │ │ │ ├── adc.o │ │ │ │ ├── main.o │ │ │ │ ├── uart.o │ │ │ │ ├── delay.o │ │ │ │ ├── 07c-ADC_LM35_TempSensor.elf │ │ │ │ └── makedep.mk │ │ │ └── .vs │ │ │ │ └── 07c-ADC_LM35_TempSensor │ │ │ │ └── v14 │ │ │ │ └── .atsuo │ │ └── .vs │ │ │ └── 07b-Adc_RawValue_Voltage │ │ │ └── v14 │ │ │ └── .atsuo │ ├── 07e-ADC_Temperature_LCD │ │ ├── Debug │ │ │ ├── 07e-ADC_Temperature_LCD.eep │ │ │ ├── adc.o │ │ │ ├── gpio.o │ │ │ ├── lcd.o │ │ │ ├── main.o │ │ │ ├── delay.o │ │ │ ├── 07e-ADC_Temperature_LCD.elf │ │ │ ├── makedep.mk │ │ │ └── lcd.d │ │ └── .vs │ │ │ └── 07e-ADC_Temperature_LCD │ │ │ └── v14 │ │ │ └── .atsuo │ └── 03b-SevenSegmentFourDigit │ │ ├── Debug │ │ ├── 03b-SevenSegmentFourDigit.eep │ │ ├── main.o │ │ ├── 03b-SevenSegmentFourDigit.elf │ │ └── makedep.mk │ │ └── .vs │ │ └── 03b-SevenSegmentFourDigit │ │ └── v14 │ │ └── .atsuo └── UltraAVRCompleteBoardTest │ ├── Debug │ ├── UltraAVRCompleteBoardTest.eep │ ├── adc.o │ ├── gpio.o │ ├── i2c.o │ ├── lcd.o │ ├── main.o │ ├── rtc.o │ ├── uart.o │ ├── delay.o │ ├── eeprom.o │ ├── keypad.o │ ├── UltraAVRCompleteBoardTest.elf │ ├── keypad.d │ ├── makedep.mk │ └── lcd.d │ ├── .vs │ └── UltraAVRCompleteBoardTest │ │ └── v14 │ │ └── .atsuo │ └── UltraAVRCompleteBoardTest.atsln ├── Others └── Fritzing images │ ├── LCD 16X2_AVR.fzz │ ├── LCD 16X2_AVR.png │ ├── 10b-Keypad_LCD.fzz │ ├── LCD 16X2_AVR_H.png │ ├── 10b-Keypad_LCD_bb.png │ ├── EXT_Interrupt_Edge_Level.fzz │ ├── EXT_Interrupt_Edge_Level.png │ ├── Reading Temperature with AVR ADC.fzz │ ├── Reading Temperature with AVR ADC_bb.png │ ├── Real Time Clock(DS1307) with AVR_LCD.fzz │ ├── Controlling AC device using Relay_AVR.fzz │ ├── Reading Temperature with AVR ADC_TEMP.fzz │ ├── Controlling AC device using Relay_AVR_bb.png │ ├── Reading Temperature with AVR ADC_TEMP_bb.png │ ├── Real Time Clock(DS1307) with AVR_LCD_RTC.png │ ├── Real Time Clock(DS1307) with AVR_LCD_bb.png │ ├── Interfacing Seven Segment Displays with AVR.fzz │ ├── Interfacing Seven Segment Displays with AVR_bb.png │ ├── Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 .fzz │ ├── Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 _bb.png │ └── Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 _bb1.png ├── Hardware Design ├── Explore Ultra One base board │ ├── BOM.xlsx │ ├── Gerber │ │ └── Gerber.rar │ ├── MCU_BaseBoard.pdf │ ├── MCU_BaseBoard_BOM.xlsx │ ├── Drill │ │ ├── MCU_BaseBoard-drl_map.pdf │ │ ├── MCU_BaseBoard-NPTH-drl_map.pdf │ │ └── MCU_BaseBoard-NPTH.drl │ └── fp-lib-table └── Atmega32 Breakout Board │ ├── 40pin_AVRMCU.pdf │ └── 40pin_AVRMCU.csv └── Bootloader └── README.md /Code/AVR Tutorial Code/UART/Debug/UART.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/Debug/12a-Timer0.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Debug/12b-Timer1.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Release/12b-Timer1.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/Debug/07a-ADC_UART.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/07d-ADC_LCD.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/Debug/02a-SwitchLed.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/10b-Keypad_LCD.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/11a-TimersLed/Debug/11a-TimersLed.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/Debug/12a-PwmLedFade.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01a-LedBlinking/Debug/01a-LedBlinking.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/Debug/01b-LedUpCounter.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06a_UART_Tx_Char/Debug/06a_UART_Tx_Char.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/10a-Keypad_UART.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/Debug/Blinky with AVR.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/09b-RTC_DS1307_LCD.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/11e-UART_Interrupt.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/UltraAVRCompleteBoardTest.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/06b-UART_Rx_Tx_Lcd.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06c-UART_Tx_String/Debug/06c-UART_Tx_String.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/06d-UART_Tx_Numbers.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/09a-RTC_DS1307_UART.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/09b-RTC_DS1307_LCD.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/10b-Keypad_LCD.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/05a-Lcd_4bit_Display.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer_Interrupt/Debug/11c-Timer_Interrupt.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/04a-Lcd_8bit_Display.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/04b-Lcd_8bit_UpCounter.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/04c-Lcd_8bit_Scrolling.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/05a-Lcd_4bit_Display.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/05b-Lcd_4bit_UpCounter.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/05c-Lcd_4bit_Scrolling.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/08a-Eeprom_Byte_RdWr.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/08b-Eeprom_String_RdWr.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/11b-EXT_INTR_Edge_Level.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/11a-EXT_interrupt_Edge.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/03a-SevenSegment_Single/Debug/03a-SevenSegment_Single.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/06e-UART_String_RxTx_Lcd.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/07b-Adc_RawValue_Voltage.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/07e-ADC_Temperature_LCD.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/SevenSegmentFourDigit/Debug/03b-SevenSegmentFourDigit.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/03b-SevenSegmentFourDigit/Debug/03b-SevenSegmentFourDigit.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/Switch and a LED with AVR.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/Reading Temperature with AVR ADC.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/07c-ADC_LM35_TempSensor.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/Controlling AC device using Relay_AVR.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/Interfacing Character LCDs 16X1 with AVR.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/Interfacing Character LCDs 20X4 with AVR.eep: -------------------------------------------------------------------------------- 1 | :00000001FF 2 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART/Debug/main.o -------------------------------------------------------------------------------- /Others/Fritzing images/LCD 16X2_AVR.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/LCD 16X2_AVR.fzz -------------------------------------------------------------------------------- /Others/Fritzing images/LCD 16X2_AVR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/LCD 16X2_AVR.png -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer0/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer0/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer1/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART/Debug/UART.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART/Debug/UART.elf -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/adc.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/gpio.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/i2c.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/lcd.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/main.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/rtc.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/uart.o -------------------------------------------------------------------------------- /Others/Fritzing images/10b-Keypad_LCD.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/10b-Keypad_LCD.fzz -------------------------------------------------------------------------------- /Others/Fritzing images/LCD 16X2_AVR_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/LCD 16X2_AVR_H.png -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07d-ADC_LCD/Debug/adc.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07d-ADC_LCD/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Release/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer1/Release/main.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/delay.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/eeprom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/eeprom.o -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/keypad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/keypad.o -------------------------------------------------------------------------------- /Others/Fritzing images/10b-Keypad_LCD_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/10b-Keypad_LCD_bb.png -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/02a-SwitchLed/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/Debug/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07a-ADC_UART/Debug/adc.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07a-ADC_UART/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07a-ADC_UART/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07a-ADC_UART/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07d-ADC_LCD/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07d-ADC_LCD/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07d-ADC_LCD/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10b-Keypad_LCD/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/11a-TimersLed/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/11a-TimersLed/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/Debug/pwm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/12a-PwmLedFade/Debug/pwm.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART/.vs/UART/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART/.vs/UART/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/01a-LedBlinking/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/01a-LedBlinking/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10a-Keypad_UART/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10a-Keypad_UART/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10a-Keypad_UART/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10b-Keypad_LCD/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10b-Keypad_LCD/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10b-Keypad_LCD/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/11a-TimersLed/Debug/timers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/11a-TimersLed/Debug/timers.o -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/12a-PwmLedFade/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/12a-PwmLedFade/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/i2c.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/rtc.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/Debug/12a-Timer0.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer0/Debug/12a-Timer0.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Debug/12b-Timer1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer1/Debug/12b-Timer1.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART_Interrupt/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART_Interrupt/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART_Interrupt/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/01b-LedUpCounter/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06a_UART_Tx_Char/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06a_UART_Tx_Char/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06a_UART_Tx_Char/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06a_UART_Tx_Char/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06c-UART_Tx_String/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06c-UART_Tx_String/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06c-UART_Tx_String/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06c-UART_Tx_String/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/i2c.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/rtc.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/i2c.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/rtc.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10a-Keypad_UART/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/keypad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10a-Keypad_UART/Debug/keypad.o -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/keypad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10b-Keypad_LCD/Debug/keypad.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Blinky with AVR/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Release/12b-Timer1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer1/Release/12b-Timer1.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer_Interrupt/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer_Interrupt/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART_Interrupt/Debug/delay.o -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Hardware Design/Explore Ultra One base board/BOM.xlsx -------------------------------------------------------------------------------- /Others/Fritzing images/EXT_Interrupt_Edge_Level.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/EXT_Interrupt_Edge_Level.fzz -------------------------------------------------------------------------------- /Others/Fritzing images/EXT_Interrupt_Edge_Level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/EXT_Interrupt_Edge_Level.png -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/07d-ADC_LCD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07d-ADC_LCD/Debug/07d-ADC_LCD.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/.vs/12a-Timer0/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer0/.vs/12a-Timer0/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/.vs/12b-Timer1/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer1/.vs/12b-Timer1/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/03a-SevenSegment_Single/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/03a-SevenSegment_Single/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/Debug/07a-ADC_UART.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07a-ADC_UART/Debug/07a-ADC_UART.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/adc.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/adc.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/eeprom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/eeprom.o -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/SevenSegmentFourDigit/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/SevenSegmentFourDigit/Debug/main.o -------------------------------------------------------------------------------- /Hardware Design/Atmega32 Breakout Board/40pin_AVRMCU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Hardware Design/Atmega32 Breakout Board/40pin_AVRMCU.pdf -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/Debug/02a-SwitchLed.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/02a-SwitchLed/Debug/02a-SwitchLed.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/03b-SevenSegmentFourDigit/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/03b-SevenSegmentFourDigit/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/.vs/07d-ADC_LCD/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07d-ADC_LCD/.vs/07d-ADC_LCD/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/eeprom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/eeprom.o -------------------------------------------------------------------------------- /Code/AVR Example Code/11a-TimersLed/Debug/11a-TimersLed.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/11a-TimersLed/Debug/11a-TimersLed.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/main.o -------------------------------------------------------------------------------- /Others/Fritzing images/Reading Temperature with AVR ADC.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Reading Temperature with AVR ADC.fzz -------------------------------------------------------------------------------- /Code/AVR Example Code/01a-LedBlinking/Debug/01a-LedBlinking.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/01a-LedBlinking/Debug/01a-LedBlinking.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/.vs/07a-ADC_UART/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07a-ADC_UART/.vs/07a-ADC_UART/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/10a-Keypad_UART.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10a-Keypad_UART/Debug/10a-Keypad_UART.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/10b-Keypad_LCD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10b-Keypad_LCD/Debug/10b-Keypad_LCD.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/Debug/12a-PwmLedFade.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/12a-PwmLedFade/Debug/12a-PwmLedFade.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/keypad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/keypad.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/main.o -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/Gerber/Gerber.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Hardware Design/Explore Ultra One base board/Gerber/Gerber.rar -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/MCU_BaseBoard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Hardware Design/Explore Ultra One base board/MCU_BaseBoard.pdf -------------------------------------------------------------------------------- /Others/Fritzing images/Reading Temperature with AVR ADC_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Reading Temperature with AVR ADC_bb.png -------------------------------------------------------------------------------- /Others/Fritzing images/Real Time Clock(DS1307) with AVR_LCD.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Real Time Clock(DS1307) with AVR_LCD.fzz -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/Debug/01b-LedUpCounter.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/01b-LedUpCounter/Debug/01b-LedUpCounter.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/.vs/02a-SwitchLed/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/02a-SwitchLed/.vs/02a-SwitchLed/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/06a_UART_Tx_Char/Debug/06a_UART_Tx_Char.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06a_UART_Tx_Char/Debug/06a_UART_Tx_Char.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/11a-TimersLed/.vs/11a-TimersLed/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/11a-TimersLed/.vs/11a-TimersLed/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/Debug/Blinky with AVR.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Blinky with AVR/Debug/Blinky with AVR.elf -------------------------------------------------------------------------------- /Others/Fritzing images/Controlling AC device using Relay_AVR.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Controlling AC device using Relay_AVR.fzz -------------------------------------------------------------------------------- /Others/Fritzing images/Reading Temperature with AVR ADC_TEMP.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Reading Temperature with AVR ADC_TEMP.fzz -------------------------------------------------------------------------------- /Code/AVR Example Code/01a-LedBlinking/.vs/01a-LedBlinking/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/01a-LedBlinking/.vs/01a-LedBlinking/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/.vs/10a-Keypad_UART/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10a-Keypad_UART/.vs/10a-Keypad_UART/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/.vs/10b-Keypad_LCD/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/10b-Keypad_LCD/.vs/10b-Keypad_LCD/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/.vs/12a-PwmLedFade/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/12a-PwmLedFade/.vs/12a-PwmLedFade/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/09b-RTC_DS1307_LCD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/09b-RTC_DS1307_LCD.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/adc.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer_Interrupt/Debug/11c-Timer_Interrupt.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer_Interrupt/Debug/11c-Timer_Interrupt.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/11e-UART_Interrupt.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART_Interrupt/Debug/11e-UART_Interrupt.elf -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/UltraAVRCompleteBoardTest.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/Debug/UltraAVRCompleteBoardTest.elf -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/MCU_BaseBoard_BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Hardware Design/Explore Ultra One base board/MCU_BaseBoard_BOM.xlsx -------------------------------------------------------------------------------- /Others/Fritzing images/Controlling AC device using Relay_AVR_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Controlling AC device using Relay_AVR_bb.png -------------------------------------------------------------------------------- /Others/Fritzing images/Reading Temperature with AVR ADC_TEMP_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Reading Temperature with AVR ADC_TEMP_bb.png -------------------------------------------------------------------------------- /Others/Fritzing images/Real Time Clock(DS1307) with AVR_LCD_RTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Real Time Clock(DS1307) with AVR_LCD_RTC.png -------------------------------------------------------------------------------- /Others/Fritzing images/Real Time Clock(DS1307) with AVR_LCD_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Real Time Clock(DS1307) with AVR_LCD_bb.png -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/.vs/01b-LedUpCounter/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/01b-LedUpCounter/.vs/01b-LedUpCounter/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/06a_UART_Tx_Char/.vs/06a_UART_Tx_Char/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06a_UART_Tx_Char/.vs/06a_UART_Tx_Char/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/06b-UART_Rx_Tx_Lcd.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/06b-UART_Rx_Tx_Lcd.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/06c-UART_Tx_String/Debug/06c-UART_Tx_String.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06c-UART_Tx_String/Debug/06c-UART_Tx_String.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/09b-RTC_DS1307_LCD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/09b-RTC_DS1307_LCD.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/.vs/Blinky with AVR/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Blinky with AVR/.vs/Blinky with AVR/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/GccApplication1/.vs/GccApplication1/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/GccApplication1/.vs/GccApplication1/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/05a-Lcd_4bit_Display.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/05a-Lcd_4bit_Display.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/delay.o -------------------------------------------------------------------------------- /Others/Fritzing images/Interfacing Seven Segment Displays with AVR.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Interfacing Seven Segment Displays with AVR.fzz -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/04a-Lcd_8bit_Display.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/04a-Lcd_8bit_Display.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/05a-Lcd_4bit_Display.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/05a-Lcd_4bit_Display.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/06d-UART_Tx_Numbers.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/06d-UART_Tx_Numbers.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/08a-Eeprom_Byte_RdWr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/08a-Eeprom_Byte_RdWr.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/09a-RTC_DS1307_UART.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/09a-RTC_DS1307_UART.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/10b-Keypad_LCD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/10b-Keypad_LCD.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/.vs/09b-RTC_DS1307_LCD/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/RTC_DS1307_LCD/.vs/09b-RTC_DS1307_LCD/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer_Interrupt/.vs/11c-Timer_Interrupt/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Timer_Interrupt/.vs/11c-Timer_Interrupt/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/.vs/11e-UART_Interrupt/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/UART_Interrupt/.vs/11e-UART_Interrupt/v14/.atsuo -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/.vs/UltraAVRCompleteBoardTest/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/UltraAVRCompleteBoardTest/.vs/UltraAVRCompleteBoardTest/v14/.atsuo -------------------------------------------------------------------------------- /Others/Fritzing images/Interfacing Seven Segment Displays with AVR_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Interfacing Seven Segment Displays with AVR_bb.png -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/.vs/06b-UART_Rx_Tx_Lcd/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/.vs/06b-UART_Rx_Tx_Lcd/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/06c-UART_Tx_String/.vs/06c-UART_Tx_String/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06c-UART_Tx_String/.vs/06c-UART_Tx_String/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/.vs/09b-RTC_DS1307_LCD/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09b-RTC_DS1307_LCD/.vs/09b-RTC_DS1307_LCD/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/11a-EXT_interrupt_Edge.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/11a-EXT_interrupt_Edge.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/lcd.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/.vs/05a-Lcd_4bit_Display/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Lcd_4bit_Display/.vs/05a-Lcd_4bit_Display/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/.vs/04a-Lcd_8bit_Display/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04a-Lcd_8bit_Display/.vs/04a-Lcd_8bit_Display/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/04b-Lcd_8bit_UpCounter.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/04b-Lcd_8bit_UpCounter.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/04c-Lcd_8bit_Scrolling.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/04c-Lcd_8bit_Scrolling.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/.vs/05a-Lcd_4bit_Display/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05a-Lcd_4bit_Display/.vs/05a-Lcd_4bit_Display/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/05b-Lcd_4bit_UpCounter.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/05b-Lcd_4bit_UpCounter.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/05c-Lcd_4bit_Scrolling.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/05c-Lcd_4bit_Scrolling.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/.vs/06d-UART_Tx_Numbers/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06d-UART_Tx_Numbers/.vs/06d-UART_Tx_Numbers/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/.vs/08a-Eeprom_Byte_RdWr/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08a-Eeprom_Byte_RdWr/.vs/08a-Eeprom_Byte_RdWr/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/08b-Eeprom_String_RdWr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/08b-Eeprom_String_RdWr.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/.vs/09a-RTC_DS1307_UART/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/09a-RTC_DS1307_UART/.vs/09a-RTC_DS1307_UART/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/.vs/10b-Keypad_LCD/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/AVR InterfacingHex Kepad/.vs/10b-Keypad_LCD/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/11b-EXT_INTR_Edge_Level.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/11b-EXT_INTR_Edge_Level.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/gpio.o -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/main.o -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/Drill/MCU_BaseBoard-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Hardware Design/Explore Ultra One base board/Drill/MCU_BaseBoard-drl_map.pdf -------------------------------------------------------------------------------- /Code/AVR Example Code/03a-SevenSegment_Single/Debug/03a-SevenSegment_Single.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/03a-SevenSegment_Single/Debug/03a-SevenSegment_Single.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/07e-ADC_Temperature_LCD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/07e-ADC_Temperature_LCD.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/.vs/11a-EXT_interrupt_Edge/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_interrupt_Edge/.vs/11a-EXT_interrupt_Edge/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/SevenSegmentFourDigit/Debug/03b-SevenSegmentFourDigit.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/SevenSegmentFourDigit/Debug/03b-SevenSegmentFourDigit.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/03b-SevenSegmentFourDigit/Debug/03b-SevenSegmentFourDigit.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/03b-SevenSegmentFourDigit/Debug/03b-SevenSegmentFourDigit.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/.vs/04b-Lcd_8bit_UpCounter/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04b-Lcd_8bit_UpCounter/.vs/04b-Lcd_8bit_UpCounter/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/.vs/04c-Lcd_8bit_Scrolling/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/04c-Lcd_8bit_Scrolling/.vs/04c-Lcd_8bit_Scrolling/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/.vs/05b-Lcd_4bit_UpCounter/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05b-Lcd_4bit_UpCounter/.vs/05b-Lcd_4bit_UpCounter/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/.vs/05c-Lcd_4bit_Scrolling/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/05c-Lcd_4bit_Scrolling/.vs/05c-Lcd_4bit_Scrolling/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/06e-UART_String_RxTx_Lcd.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/06e-UART_String_RxTx_Lcd.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/adc.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/main.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/uart.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/07b-Adc_RawValue_Voltage.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/07b-Adc_RawValue_Voltage.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/.vs/08b-Eeprom_String_RdWr/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/08b-Eeprom_String_RdWr/.vs/08b-Eeprom_String_RdWr/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/.vs/11b-EXT_INTR_Edge_Level/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/EXT_INTR_Edge_Level/.vs/11b-EXT_INTR_Edge_Level/v14/.atsuo -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/Drill/MCU_BaseBoard-NPTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Hardware Design/Explore Ultra One base board/Drill/MCU_BaseBoard-NPTH-drl_map.pdf -------------------------------------------------------------------------------- /Code/AVR Example Code/03a-SevenSegment_Single/.vs/03a-SevenSegment_Single/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/03a-SevenSegment_Single/.vs/03a-SevenSegment_Single/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/delay.o -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/.vs/07e-ADC_Temperature_LCD/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07e-ADC_Temperature_LCD/.vs/07e-ADC_Temperature_LCD/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/SevenSegmentFourDigit/.vs/03b-SevenSegmentFourDigit/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/SevenSegmentFourDigit/.vs/03b-SevenSegmentFourDigit/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/Switch and a LED with AVR.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/Switch and a LED with AVR.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/03b-SevenSegmentFourDigit/.vs/03b-SevenSegmentFourDigit/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/03b-SevenSegmentFourDigit/.vs/03b-SevenSegmentFourDigit/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/.vs/06e-UART_String_RxTx_Lcd/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/06e-UART_String_RxTx_Lcd/.vs/06e-UART_String_RxTx_Lcd/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/.vs/07b-Adc_RawValue_Voltage/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/.vs/07b-Adc_RawValue_Voltage/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/.vs/Switch and a LED with AVR/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Switch and a LED with AVR/.vs/Switch and a LED with AVR/v14/.atsuo -------------------------------------------------------------------------------- /Others/Fritzing images/Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 .fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 .fzz -------------------------------------------------------------------------------- /Others/Fritzing images/Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 _bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 _bb.png -------------------------------------------------------------------------------- /Others/Fritzing images/Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 _bb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Others/Fritzing images/Interfacing KS0108 based JHD12864E Graphics LCD with Atmega32 _bb1.png -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h 3 | 4 | ../../00-libfiles/lcd.h: 5 | 6 | ../../00-libfiles/stdutils.h: 7 | 8 | ../../00-libfiles/gpio.h: 9 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/Reading Temperature with AVR ADC.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/Reading Temperature with AVR ADC.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h 3 | 4 | ../../00-libfiles/lcd.h: 5 | 6 | ../../00-libfiles/stdutils.h: 7 | 8 | ../../00-libfiles/gpio.h: 9 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h 3 | 4 | ../../00-libfiles/lcd.h: 5 | 6 | ../../00-libfiles/stdutils.h: 7 | 8 | ../../00-libfiles/gpio.h: 9 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/.vs/Reading Temperature with AVR ADC/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Reading Temperature with AVR ADC/.vs/Reading Temperature with AVR ADC/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/07c-ADC_LM35_TempSensor.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/07c-ADC_LM35_TempSensor.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/Controlling AC device using Relay_AVR.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/Controlling AC device using Relay_AVR.elf -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/.vs/07c-ADC_LM35_TempSensor/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/.vs/07c-ADC_LM35_TempSensor/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h 3 | 4 | ../../00-libfiles/lcd.h: 5 | 6 | ../../00-libfiles/stdutils.h: 7 | 8 | ../../00-libfiles/gpio.h: 9 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/.vs/Controlling AC device using Relay_AVR/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/.vs/Controlling AC device using Relay_AVR/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Release/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01a-LedBlinking/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/Interfacing Character LCDs 16X1 with AVR.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/Interfacing Character LCDs 16X1 with AVR.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/Interfacing Character LCDs 20X4 with AVR.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/Interfacing Character LCDs 20X4 with AVR.elf -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer_Interrupt/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Example Code/03a-SevenSegment_Single/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Example Code/03b-SevenSegmentFourDigit/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/.vs/Interfacing Character LCDs 16X1 with AVR/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/.vs/Interfacing Character LCDs 16X1 with AVR/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/.vs/Interfacing Character LCDs 20X4 with AVR/v14/.atsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExploreEmbedded/ATmega32_ExploreUltraAvrDevKit/HEAD/Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/.vs/Interfacing Character LCDs 20X4 with AVR/v14/.atsuo -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/SevenSegmentFourDigit/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name sw)(type KiCad)(uri "H:\\PCB_Designes\\LPC1768 Stick1\\lib_new\\Housings_QFP.pretty-master")(options "")(descr "")) 3 | (lib (name EE)(type KiCad)(uri "H:\\PCB_Designes\\LPC1768 Stick1\\lib_new\\logo.pretty")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | main.c 6 | 7 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\gpio.c 6 | 7 | main.c 8 | 9 | -------------------------------------------------------------------------------- /Code/AVR Example Code/11a-TimersLed/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\timers.c 6 | 7 | main.c 8 | 9 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06a_UART_Tx_Char/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\uart.c 6 | 7 | main.c 8 | 9 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06c-UART_Tx_String/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\uart.c 6 | 7 | main.c 8 | 9 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/rtc.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/lcd.h \ 3 | ../../00-libfiles/gpio.h 4 | 5 | ../../00-libfiles/rtc.h: 6 | 7 | ../../00-libfiles/stdutils.h: 8 | 9 | ../../00-libfiles/lcd.h: 10 | 11 | ../../00-libfiles/gpio.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/rtc.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/lcd.h \ 3 | ../../00-libfiles/gpio.h 4 | 5 | ../../00-libfiles/rtc.h: 6 | 7 | ../../00-libfiles/stdutils.h: 8 | 9 | ../../00-libfiles/lcd.h: 10 | 11 | ../../00-libfiles/gpio.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/keypad.h \ 2 | ../../00-libfiles/gpio.h ../../00-libfiles/stdutils.h \ 3 | ../../00-libfiles/lcd.h 4 | 5 | ../../00-libfiles/keypad.h: 6 | 7 | ../../00-libfiles/gpio.h: 8 | 9 | ../../00-libfiles/stdutils.h: 10 | 11 | ../../00-libfiles/lcd.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h \ 3 | ../../00-libfiles/delay.h 4 | 5 | ../../00-libfiles/lcd.h: 6 | 7 | ../../00-libfiles/stdutils.h: 8 | 9 | ../../00-libfiles/gpio.h: 10 | 11 | ../../00-libfiles/delay.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h \ 3 | ../../00-libfiles/delay.h 4 | 5 | ../../00-libfiles/lcd.h: 6 | 7 | ../../00-libfiles/stdutils.h: 8 | 9 | ../../00-libfiles/gpio.h: 10 | 11 | ../../00-libfiles/delay.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h \ 3 | ../../00-libfiles/delay.h 4 | 5 | ../../00-libfiles/lcd.h: 6 | 7 | ../../00-libfiles/stdutils.h: 8 | 9 | ../../00-libfiles/gpio.h: 10 | 11 | ../../00-libfiles/delay.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/lcd.h \ 2 | ../../00-libfiles/stdutils.h ../../00-libfiles/gpio.h \ 3 | ../../00-libfiles/delay.h 4 | 5 | ../../00-libfiles/lcd.h: 6 | 7 | ../../00-libfiles/stdutils.h: 8 | 9 | ../../00-libfiles/gpio.h: 10 | 11 | ../../00-libfiles/delay.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/main.d: -------------------------------------------------------------------------------- 1 | main.d main.o: .././main.c ../../00-libfiles/keypad.h \ 2 | ../../00-libfiles/gpio.h ../../00-libfiles/stdutils.h \ 3 | ../../00-libfiles/lcd.h 4 | 5 | ../../00-libfiles/keypad.h: 6 | 7 | ../../00-libfiles/gpio.h: 8 | 9 | ../../00-libfiles/stdutils.h: 10 | 11 | ../../00-libfiles/lcd.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/keypad.d: -------------------------------------------------------------------------------- 1 | keypad.d keypad.o: ../../00-libfiles/keypad.c ../../00-libfiles/keypad.h \ 2 | ../../00-libfiles/gpio.h ../../00-libfiles/stdutils.h \ 3 | ../../00-libfiles/delay.h 4 | 5 | ../../00-libfiles/keypad.h: 6 | 7 | ../../00-libfiles/gpio.h: 8 | 9 | ../../00-libfiles/stdutils.h: 10 | 11 | ../../00-libfiles/delay.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/keypad.d: -------------------------------------------------------------------------------- 1 | keypad.d keypad.o: ../../00-libfiles/keypad.c ../../00-libfiles/keypad.h \ 2 | ../../00-libfiles/gpio.h ../../00-libfiles/stdutils.h \ 3 | ../../00-libfiles/delay.h 4 | 5 | ../../00-libfiles/keypad.h: 6 | 7 | ../../00-libfiles/gpio.h: 8 | 9 | ../../00-libfiles/stdutils.h: 10 | 11 | ../../00-libfiles/delay.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\pwm.c 8 | 9 | main.c 10 | 11 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\uart.c 8 | 9 | main.c 10 | 11 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/keypad.d: -------------------------------------------------------------------------------- 1 | keypad.d keypad.o: ../../00-libfiles/keypad.c ../../00-libfiles/keypad.h \ 2 | ../../00-libfiles/gpio.h ../../00-libfiles/stdutils.h \ 3 | ../../00-libfiles/delay.h 4 | 5 | ../../00-libfiles/keypad.h: 6 | 7 | ../../00-libfiles/gpio.h: 8 | 9 | ../../00-libfiles/stdutils.h: 10 | 11 | ../../00-libfiles/delay.h: 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\gpio.c 6 | 7 | ..\00-libfiles\lcd.c 8 | 9 | delay.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Hardware Design/Explore Ultra One base board/Drill/MCU_BaseBoard-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ;DRILL file {kicad (2015-01-16 BZR 5376)-product} date 6/20/2015 12:26:38 PM 3 | ;FORMAT={-:-/ absolute / metric / decimal} 4 | FMAT,2 5 | METRIC,TZ 6 | T1C1.016 7 | % 8 | G90 9 | G05 10 | M71 11 | T1 12 | X49.584Y-142.944G85X49.584Y-140.96 13 | G05 14 | X60.384Y-142.944G85X60.384Y-140.96 15 | G05 16 | T0 17 | M30 18 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\adc.c 6 | 7 | ..\00-libfiles\delay.c 8 | 9 | ..\00-libfiles\uart.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\adc.c 6 | 7 | ..\00-libfiles\delay.c 8 | 9 | ..\00-libfiles\uart.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\eeprom.c 8 | 9 | ..\00-libfiles\uart.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\eeprom.c 8 | 9 | ..\00-libfiles\uart.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART/Debug/UART.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C9437000C940000FFCFF894E7 8 | :02007000FFCFC0 9 | :00000001FF 10 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\adc.c 6 | 7 | ..\00-libfiles\delay.c 8 | 9 | ..\00-libfiles\uart.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\adc.c 6 | 7 | ..\00-libfiles\delay.c 8 | 9 | ..\00-libfiles\gpio.c 10 | 11 | ..\00-libfiles\lcd.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/main.c: -------------------------------------------------------------------------------- 1 | #include "lcd.h" 2 | int main() 3 | 4 | { 5 | 6 | /*Connect RS->PB0, RW->PB1, EN->PB2 and data bus to PORTC.4 to PORTC.7*/ 7 | LCD_SetUp(PB_0,PB_1,PB_2,P_NC,P_NC,P_NC,P_NC,PC_4,PC_5,PC_6,PC_7); 8 | 9 | LCD_Init(1,16); 10 | 11 | LCD_DisplayString("Explore Embedded"); 12 | 13 | while(1); 14 | 15 | return (0); 16 | 17 | } -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07b-Adc_RawValue_Voltage/07c-ADC_LM35_TempSensor/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\adc.c 6 | 7 | ..\00-libfiles\delay.c 8 | 9 | ..\00-libfiles\uart.c 10 | 11 | main.c 12 | 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\keypad.c 10 | 11 | ..\00-libfiles\lcd.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | DDRC = 0xff; // Configure PORTC as output to connect Leds 6 | DDRA = 0x00; // Configure PORTA as INput to connect switches 7 | PORTA = 0xff; // Enable The PullUps of PORTA. 8 | while(1) 9 | { 10 | PORTC = PINA; // Read the switch status and display it on Leds 11 | } 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART/Debug/UART.srec: -------------------------------------------------------------------------------- 1 | S00C0000554152542E73726563DC 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C9437000C940000FFCFF894E3 9 | S1050070FFCFBC 10 | S9030000FC 11 | -------------------------------------------------------------------------------- /Bootloader/README.md: -------------------------------------------------------------------------------- 1 | Serial bootloader for Atmega32 2 | 3 | 4 | # optiboot_atmega32_16Mhz.hex: Fuse Bits 5 | ``` 6 | low_fuses=0xff 7 | high_fuses=0xde 8 | extended_fuses=0x00 9 | lock_bits=0x0F 10 | 11 | Baud Rate=19200 12 | ``` 13 | 14 | 15 | 16 | Check the below link for flashing the .hex file using XploreFlash tool 17 | https://exploreembedded.com/wiki/Setting_Up_Starter_AVR 18 | Do comment below this utorial for any issues. 19 | 20 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | ..\00-libfiles\uart.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\adc.c 6 | 7 | ..\00-libfiles\delay.c 8 | 9 | ..\00-libfiles\gpio.c 10 | 11 | ..\00-libfiles\lcd.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\i2c.c 8 | 9 | ..\00-libfiles\rtc.c 10 | 11 | ..\00-libfiles\uart.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\keypad.c 10 | 11 | ..\00-libfiles\uart.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\lcd.c 10 | 11 | ..\00-libfiles\uart.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\keypad.c 10 | 11 | ..\00-libfiles\lcd.c 12 | 13 | main.c 14 | 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/Debug/02a-SwitchLed.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C943D000C9400008FEF84BB7E 8 | :0E0070001ABA8BBB89B385BBFDCFF894FFCFC6 9 | :00000001FF 10 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\i2c.c 10 | 11 | ..\00-libfiles\lcd.c 12 | 13 | ..\00-libfiles\rtc.c 14 | 15 | main.c 16 | 17 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/makedep.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit or delete the file 3 | ################################################################################ 4 | 5 | ..\00-libfiles\delay.c 6 | 7 | ..\00-libfiles\gpio.c 8 | 9 | ..\00-libfiles\i2c.c 10 | 11 | ..\00-libfiles\lcd.c 12 | 13 | ..\00-libfiles\rtc.c 14 | 15 | main.c 16 | 17 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | DDRC = 0xff; // Configure PORTC as output 7 | 8 | while(1) 9 | { 10 | PORTC = 0xff; // Turn ON all the Leds connected to PORTC 11 | _delay_ms(5000); // Wait for some time 12 | PORTC = 0x00; // Turn OFF all the Leds connected to PORTC 13 | _delay_ms(5000); // Wait for some time 14 | } 15 | return 0; 16 | } -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/Switch and a LED with AVR.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C943D000C9400008FEF84BB7E 8 | :0E0070001ABA8BBB89B385BBFDCFF894FFCFC6 9 | :00000001FF 10 | -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/Debug/02a-SwitchLed.srec: -------------------------------------------------------------------------------- 1 | S01500003032612D5377697463684C65642E7372656398 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C943D000C9400008FEF84BB7A 9 | S11100701ABA8BBB89B385BBFDCFF894FFCFC2 10 | S9030000FC 11 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/Debug/12a-Timer0.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C9449000C9400008FEF81BB75 8 | :1000700012BE85E083BF21E090E186E008B600FE75 9 | :10008000FDCF12BE28BF8150C9F782B3892782BB3A 10 | :06009000F4CFF894FFCF4D 11 | :00000001FF 12 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Debug/12b-Timer1.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C944C000C9400008C9A85E0A1 8 | :100070008EBD8AE196E09BBD8ABD1DBC1CBC90E193 9 | :1000800008B604FEFDCF82B3892782BB1DBC1CBC11 10 | :0C00900088B7806188BFF4CFF894FFCFE0 11 | :00000001FF 12 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Switch and a LED with AVR/Debug/Switch and a LED with AVR.srec: -------------------------------------------------------------------------------- 1 | S021000053776974636820616E642061204C45442077697468204156522E73726563E3 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C943D000C9400008FEF84BB7A 9 | S11100701ABA8BBB89B385BBFDCFF894FFCFC2 10 | S9030000FC 11 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Release/12b-Timer1.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C944D000C9400008FEF81BB71 8 | :1000700089E09DE39BBD8ABD85E08EBD1DBC1CBC97 9 | :1000800090E108B604FEFDCF1DBC1CBC88B7807192 10 | :0E00900088BF82B3892782BBF4CFF894FFCFDC 11 | :00000001FF 12 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/Debug/01b-LedUpCounter.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C944B000C9400008FEF8ABB6A 8 | :1000700087BB84BB81BB80E08BBB88BB85BB82BB5D 9 | :100080002FEF39E698E1215030409040E1F700C071 10 | :0A00900000008F5FF1CFF894FFCF5E 11 | :00000001FF 12 | -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/Debug/keypad.d: -------------------------------------------------------------------------------- 1 | keypad.d keypad.o: ../../AVR\ Example\ Code/00-libfiles/keypad.c \ 2 | ../../AVR\ Example\ Code/00-libfiles/keypad.h \ 3 | ../../AVR\ Example\ Code/00-libfiles/gpio.h \ 4 | ../../AVR\ Example\ Code/00-libfiles/stdutils.h \ 5 | ../../AVR\ Example\ Code/00-libfiles/delay.h 6 | 7 | ../../AVR\ Example\ Code/00-libfiles/keypad.h: 8 | 9 | ../../AVR\ Example\ Code/00-libfiles/gpio.h: 10 | 11 | ../../AVR\ Example\ Code/00-libfiles/stdutils.h: 12 | 13 | ../../AVR\ Example\ Code/00-libfiles/delay.h: 14 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/Debug/Blinky with AVR.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C944D000C9400008FEF84BB6E 8 | :1000700085BB2FEF33E294EF215030409040E1F701 9 | :1000800000C0000015BA2FEF33E294EF215030404A 10 | :0E0090009040E1F700C00000EBCFF894FFCFE6 11 | :00000001FF 12 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/Debug/12a-Timer0.srec: -------------------------------------------------------------------------------- 1 | S01200003132612D54696D6572302E73726563F0 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C9449000C9400008FEF81BB71 9 | S113007012BE85E083BF21E090E186E008B600FE71 10 | S1130080FDCF12BE28BF8150C9F782B3892782BB36 11 | S1090090F4CFF894FFCF49 12 | S9030000FC 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Debug/12b-Timer1.srec: -------------------------------------------------------------------------------- 1 | S01200003132622D54696D6572312E73726563EE 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C944C000C9400008C9A85E09D 9 | S11300708EBD8AE196E09BBD8ABD1DBC1CBC90E18F 10 | S113008008B604FEFDCF82B3892782BB1DBC1CBC0D 11 | S10F009088B7806188BFF4CFF894FFCFDC 12 | S9030000FC 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/Release/12b-Timer1.srec: -------------------------------------------------------------------------------- 1 | S01200003132622D54696D6572312E73726563EE 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C944D000C9400008FEF81BB6D 9 | S113007089E09DE39BBD8ABD85E08EBD1DBC1CBC93 10 | S113008090E108B604FEFDCF1DBC1CBC88B780718E 11 | S111009088BF82B3892782BBF4CFF894FFCFD8 12 | S9030000FC 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Hardware Design/Atmega32 Breakout Board/40pin_AVRMCU.csv: -------------------------------------------------------------------------------- 1 | "Id";"Designator";"Package";"Quantity";"Designation";"Supplier and ref"; 2 | 1;"P1";"VASCH5x2";1;"CONN_5X2";;; 3 | 2;"P5,P3,P2,P4";"SIL-10";4;"CONN_10";;; 4 | 3;"X1";"HC-49V";1;"16Mhz";;; 5 | 4;"IC1";"DIP-40__600_ELL";1;"ATMEGA32-P";;; 6 | 5;"R1";"SM1206";1;"10K";;; 7 | 6;"C3,C2";"SM1206";2;"22pF";;; 8 | 7;"C4,C6,C5";"SM1206";3;"0.1uF";;; 9 | 8;"R2,R3";"SM1206";2;"R";;; 10 | 9;"D1,D2,D3";"SM1206";3;"LED";;; 11 | 10;"P6";"SIL-7";1;"CONN_7";;; 12 | 11;"JP1";"SIL-2";1;"JUMPER";;; 13 | 12;"SW1";"SW_PUSH_SMALL_2pin_xl";1;"rst";;; 14 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/Debug/01b-LedUpCounter.srec: -------------------------------------------------------------------------------- 1 | S01800003031622D4C65645570436F756E7465722E7372656362 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C944B000C9400008FEF8ABB66 9 | S113007087BB84BB81BB80E08BBB88BB85BB82BB59 10 | S11300802FEF39E698E1215030409040E1F700C06D 11 | S10D009000008F5FF1CFF894FFCF5A 12 | S9030000FC 13 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/Controlling AC device using Relay_AVR.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C944D000C94000081E08ABB85 8 | :100070008BBB2FEF33E294EF215030409040E1F7FB 9 | :1000800000C000001BBA2FEF33E294EF2150304044 10 | :0E0090009040E1F700C00000EBCFF894FFCFE6 11 | :00000001FF 12 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06e-UART_String_RxTx_Lcd/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07e-ADC_Temperature_LCD/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/Debug/Blinky with AVR.srec: -------------------------------------------------------------------------------- 1 | S0170000426C696E6B792077697468204156522E73726563BF 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C944D000C9400008FEF84BB6A 9 | S113007085BB2FEF33E294EF215030409040E1F7FD 10 | S113008000C0000015BA2FEF33E294EF2150304046 11 | S11100909040E1F700C00000EBCFF894FFCFE2 12 | S9030000FC 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | #define LED PD4 3 | 4 | int main() 5 | { 6 | uint8_t timerOverflowCount=0; 7 | DDRD=0xff; //configure PORTD as output 8 | TCNT0=0x00; 9 | TCCR0 = (1<=6) 18 | { 19 | PORTD ^= (0x01 << LED); 20 | timerOverflowCount=0; 21 | } 22 | } 23 | } 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 16X1 with AVR/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/Debug/lcd.d: -------------------------------------------------------------------------------- 1 | lcd.d lcd.o: ../../00-libfiles/lcd.c \ 2 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h \ 3 | ../../00-libfiles/delay.h ../../00-libfiles/stdutils.h \ 4 | ../../00-libfiles/lcd.h ../../00-libfiles/gpio.h 5 | 6 | c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\4.9.2\include\stdarg.h: 7 | 8 | ../../00-libfiles/delay.h: 9 | 10 | ../../00-libfiles/stdutils.h: 11 | 12 | ../../00-libfiles/lcd.h: 13 | 14 | ../../00-libfiles/gpio.h: 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Controlling AC device using Relay_AVR/Debug/Controlling AC device using Relay_AVR.srec: -------------------------------------------------------------------------------- 1 | S02B0000436F6E74726F6C6C696E6720414320646576696365207573696E672052656C61795F4156522E737257 2 | S11300000C942A000C9434000C9434000C943400A6 3 | S11300100C9434000C9434000C9434000C9434008C 4 | S11300200C9434000C9434000C9434000C9434007C 5 | S11300300C9434000C9434000C9434000C9434006C 6 | S11300400C9434000C9434000C9434000C9434005C 7 | S11300500C94340011241FBECFE5D8E0DEBFCDBF21 8 | S11300600E9436000C944D000C94000081E08ABB81 9 | S11300708BBB2FEF33E294EF215030409040E1F7F7 10 | S113008000C000001BBA2FEF33E294EF2150304040 11 | S11100909040E1F700C00000EBCFF894FFCFE2 12 | S9030000FC 13 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer_Interrupt/Debug/11c-Timer_Interrupt.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C943C000C943C000C943C0092 2 | :100010000C943C000C943C000C943C000C943C0070 3 | :100020000C943C000C943E000C943C000C943C005E 4 | :100030000C943C000C943C000C943C000C943C0050 5 | :100040000C943C000C943C000C943C000C943C0040 6 | :100050000C943C0011241FBECFE5D8E0DEBFCDBF1D 7 | :1000600020E0A0E6B0E001C01D92A136B207E1F7A2 8 | :100070000E9453000C9463000C9400001F920F9296 9 | :100080000FB60F9211248F93809160008F5F809341 10 | :10009000600083EE8DBD80EE8CBD8F910F900FBE02 11 | :1000A0000F901F9018958FEF84BB83EE8DBD80EE6F 12 | :1000B0008CBD1FBC85E08EBD84E089BF78948091A3 13 | :0A00C000600085BBFCCFF894FFCF71 14 | :00000001FF 15 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Interfacing Character LCDs 20X4 with AVR/main.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Interfacing Character LCDs 20X4 with AVR.c 3 | * 4 | * Created: 02-Apr-16 12:19:41 PM 5 | * Author : exploreembedded 6 | */ 7 | 8 | #include 9 | #include "lcd.h" 10 | 11 | int main() 12 | 13 | { /*Connect RS->PB0, RW->PB1, EN->PB2 and data bus to PORTC.4 to PORTC.7*/ 14 | LCD_SetUp(PB_0,PB_1,PB_2,P_NC,P_NC,P_NC,P_NC,PC_4,PC_5,PC_6,PC_7); 15 | LCD_Init(4,20); 16 | LCD_DisplayString("Explore Embedded\n"); 17 | LCD_DisplayString("LCD 4-bit Mode\n"); 18 | LCD_DisplayString("20 x 4 \n"); 19 | LCD_DisplayString(":) :O"); 20 | while(1); 21 | 22 | return (0); 23 | } 24 | 25 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/main.c: -------------------------------------------------------------------------------- 1 | /* 2 | | Example part of AVR Tutorial Series @ Explore Embedded 3 | | To read the detailed tutorial visit: 4 | | http://exploreembedded.com/wiki/5.AVR_Timer_programming 5 | */ 6 | #include 7 | #include 8 | #define LED PD4 9 | int main() 10 | { 11 | DDRD |= (1< 2 | #include 3 | 4 | #define led PORTC 5 | volatile char cnt=0x00; 6 | 7 | ISR (TIMER1_OVF_vect) // Timer1 ISR 8 | { 9 | 10 | cnt++; // Increment the cnt value each time the isr is executed 11 | 12 | TCNT1H=0xE3; // Reload the 16-bit count value 13 | TCNT1L=0xE0; // in timer1 count registers 14 | } 15 | 16 | int main() 17 | { 18 | DDRC=0xff; //Configure the PORTC as output 19 | 20 | TCNT1H=0xE3; // Load the 16-bit count value 21 | TCNT1L=0xE0; // for 1 sec at 7.3728MHz 22 | 23 | TCCR1A=0x00; 24 | TCCR1B=0x05; // Timer mode with 1024 prescler 25 | TIMSK=0x04; // Enable timer1 overflow interrupt(TOIE1) 26 | sei(); // Enable global interrupts by setting global interrupt enable bit in SREG 27 | 28 | while(1) 29 | { 30 | 31 | PORTC=cnt; // Send the cnt value to PORTC which will be incremented in timer ISR 32 | 33 | } 34 | } 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_interrupt_Edge/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include "lcd.h" 5 | 6 | volatile int cnt_zero,cnt_one; 7 | 8 | ISR (INT0_vect) //External interrupt_zero ISR 9 | { 10 | cnt_zero++; 11 | } 12 | 13 | ISR (INT1_vect) //External interrupt_one ISR 14 | { 15 | cnt_one++; 16 | 17 | } 18 | 19 | int main() 20 | { 21 | DDRC=0xff; //Configure PORTC(Lcd databus) as output 22 | DDRD=0xe0; //Configure INT0,INT1 as input and PORTD5-PORTD7(rs,rw,en) as output 23 | 24 | LCD_SetUp(PB_0,PB_1,PB_2,P_NC,P_NC,P_NC,P_NC,PB_4,PB_5,PB_6,PB_7); 25 | LCD_Init(2,16); 26 | 27 | GICR=0xc0; //Enable External Interrupts INT0 and INT1 28 | MCUCR=0x0a; //Configure both INT0 and INT1 as falling edge 29 | 30 | sei(); // Enable global interrupts by setting global interrupt enable bit in SREG 31 | 32 | while(1) 33 | { 34 | LCD_Printf("EINT0:%4d\n",cnt_zero); 35 | LCD_Printf("EINT1:%4d\n",cnt_one); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include "lcd.h" 5 | 6 | volatile int cnt_zero,cnt_one; 7 | 8 | ISR (INT0_vect) //External interrupt_zero ISR 9 | { 10 | cnt_zero++; 11 | } 12 | 13 | ISR (INT1_vect) //External interrupt_one ISR 14 | { 15 | cnt_one++; 16 | 17 | } 18 | 19 | int main() 20 | { 21 | DDRC=0xff; //Configure PORTC(Lcd databus) as output 22 | DDRD=0xe0; //Configure INT0,INT1 as input and PORTD5-PORTD7(rs,rw,en) as output 23 | 24 | LCD_SetUp(PB_0,PB_1,PB_2,P_NC,P_NC,P_NC,P_NC,PB_4,PB_5,PB_6,PB_7); 25 | LCD_Init(2,16); 26 | 27 | GICR=0xc0; //Enable External Interrupts INT0 and INT1 28 | MCUCR=0x08; //Configure INT0 active low level triggered and INT1 as falling edge 29 | 30 | sei(); // Enable global interrupts by setting global interrupt enable bit in SREG 31 | 32 | while(1) 33 | { 34 | LCD_Printf("EINT0:%4u\n",cnt_zero); 35 | LCD_Printf("EINT1:%4u\n",cnt_one); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Reading Temperature with AVR ADC/main.c: -------------------------------------------------------------------------------- 1 | #include "adc.h" 2 | #include "uart.h" 3 | 4 | int main() 5 | { 6 | int adcValue; 7 | int temp; 8 | 9 | ADC_Init(); /* Initialize the ADC module */ 10 | UART_Init(9600); /* Initialize UART at 9600 baud rate */ 11 | 12 | while(1) 13 | { 14 | adcValue = ADC_GetAdcValue(0); // Read the ADC value of channel zero where the temperature sensor(LM35) is connected 15 | 16 | /* Convert the raw ADC value to equivalent temperature with 5v as ADC reference 17 | Step size of AdC= (5v/1023)=4.887mv = 5mv. 18 | for every degree celcius the Lm35 provides 10mv voltage change. 19 | 1 step of ADC=5mv=0.5'c, hence the Raw ADC value can be divided by 2 to get equivalent temp*/ 20 | 21 | temp = adcValue/2.0; // Divide by 2 to get the temp value. 22 | UART_Printf("ADC0 Value:%4d Equivalent Temperature:%dC\n\r",adcValue,temp); // Send the value on UART 23 | } 24 | 25 | return (0); 26 | } -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART/UART.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "UART", "UART.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer0/12a-Timer0.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "12a-Timer0", "12a-Timer0.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer1/12b-Timer1.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "12b-Timer1", "12b-Timer1.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07d-ADC_LCD/07d-ADC_LCD.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "07d-ADC_LCD", "07d-ADC_LCD.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/07a-ADC_UART/07a-ADC_UART.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "07a-ADC_UART", "07a-ADC_UART.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/02a-SwitchLed/02a-SwitchLed.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "02a-SwitchLed", "02a-SwitchLed.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/11a-TimersLed/11a-TimersLed.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "11a-TimersLed", "11a-TimersLed.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10b-Keypad_LCD/10b-Keypad_LCD.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "10b-Keypad_LCD", "10b-Keypad_LCD.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/12a-PwmLedFade/12a-PwmLedFade.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "12a-PwmLedFade", "12a-PwmLedFade.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01a-LedBlinking/01a-LedBlinking.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "01a-LedBlinking", "01a-LedBlinking.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01b-LedUpCounter/01b-LedUpCounter.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "01b-LedUpCounter", "01b-LedUpCounter.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06a_UART_Tx_Char/06a_UART_Tx_Char.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "06a_UART_Tx_Char", "06a_UART_Tx_Char.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/10a-Keypad_UART/10a-Keypad_UART.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "10a-Keypad_UART", "10a-Keypad_UART.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Blinky with AVR/Blinky with AVR.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "Blinky with AVR", "Blinky with AVR.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/GccApplication1/GccApplication1.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "GccApplication1", "GccApplication1.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/AVR InterfacingHex Kepad/10b-Keypad_LCD.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "10b-Keypad_LCD", "10b-Keypad_LCD.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/RTC_DS1307_LCD/09b-RTC_DS1307_LCD.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "09b-RTC_DS1307_LCD", "09b-RTC_DS1307_LCD.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/UART_Interrupt/11e-UART_Interrupt.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "11e-UART_Interrupt", "11e-UART_Interrupt.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06b-UART_Rx_Tx_Lcd/06b-UART_Rx_Tx_Lcd.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "06b-UART_Rx_Tx_Lcd", "06b-UART_Rx_Tx_Lcd.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06c-UART_Tx_String/06c-UART_Tx_String.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "06c-UART_Tx_String", "06c-UART_Tx_String.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09b-RTC_DS1307_LCD/09b-RTC_DS1307_LCD.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "09b-RTC_DS1307_LCD", "09b-RTC_DS1307_LCD.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Timer_Interrupt/11c-Timer_Interrupt.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "11c-Timer_Interrupt", "11c-Timer_Interrupt.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/01a-LedBlinking/Debug/01a-LedBlinking.hex: -------------------------------------------------------------------------------- 1 | :100000000C942A000C9434000C9434000C943400AA 2 | :100010000C9434000C9434000C9434000C94340090 3 | :100020000C9434000C9434000C9434000C94340080 4 | :100030000C9434000C9434000C9434000C94340070 5 | :100040000C9434000C9434000C9434000C94340060 6 | :100050000C94340011241FBECFE5D8E0DEBFCDBF25 7 | :100060000E9436000C94A9000C9400008FEF8ABB0C 8 | :1000700087BB84BB81BB61E070E0E0E8F0E08BBB54 9 | :1000800088BB85BB82BB2FEF31EE44E0215030406E 10 | :100090004040E1F700C000001BBA18BA15BA12BA06 11 | :1000A0005FEF91EE24E0515090402040E1F700C016 12 | :1000B00000008BBB88BB85BB82BB3FEF41EE54E0A9 13 | :1000C000315040405040E1F700C000001BBA18BA60 14 | :1000D00015BA12BA9FEF21EE34E091502040304023 15 | :1000E000E1F700C0000020E030E0AB01022E01C0CB 16 | :1000F000440F0A94EAF74BBB48BB45BB42BB4FEFEA 17 | :1001000051EE94E0415050409040E1F700C00000B3 18 | :100110002F5F3F4F2830310541F720E030E0AF013D 19 | :10012000022E02C0559547950A94E2F74BBB48BB97 20 | :1001300045BB42BB4FEF51EE94E0415050409040E0 21 | :10014000E1F700C000002F5F3F4F2830310539F73D 22 | :0601500096CFF894FFCFEA 23 | :00000001FF 24 | -------------------------------------------------------------------------------- /Code/AVR Example Code/06d-UART_Tx_Numbers/06d-UART_Tx_Numbers.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "06d-UART_Tx_Numbers", "06d-UART_Tx_Numbers.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/09a-RTC_DS1307_UART/09a-RTC_DS1307_UART.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "09a-RTC_DS1307_UART", "09a-RTC_DS1307_UART.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/Lcd_4bit_Display/05a-Lcd_4bit_Display.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "05a-Lcd_4bit_Display", "05a-Lcd_4bit_Display.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04a-Lcd_8bit_Display/04a-Lcd_8bit_Display.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "04a-Lcd_8bit_Display", "04a-Lcd_8bit_Display.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05a-Lcd_4bit_Display/05a-Lcd_4bit_Display.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "05a-Lcd_4bit_Display", "05a-Lcd_4bit_Display.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/08a-Eeprom_Byte_RdWr/08a-Eeprom_Byte_RdWr.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "08a-Eeprom_Byte_RdWr", "08a-Eeprom_Byte_RdWr.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/UltraAVRCompleteBoardTest/UltraAVRCompleteBoardTest.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "UltraAVRCompleteBoardTest", "UltraAVRCompleteBoardTest.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04b-Lcd_8bit_UpCounter/04b-Lcd_8bit_UpCounter.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "04b-Lcd_8bit_UpCounter", "04b-Lcd_8bit_UpCounter.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/04c-Lcd_8bit_Scrolling/04c-Lcd_8bit_Scrolling.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "04c-Lcd_8bit_Scrolling", "04c-Lcd_8bit_Scrolling.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05b-Lcd_4bit_UpCounter/05b-Lcd_4bit_UpCounter.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "05b-Lcd_4bit_UpCounter", "05b-Lcd_4bit_UpCounter.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/05c-Lcd_4bit_Scrolling/05c-Lcd_4bit_Scrolling.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "05c-Lcd_4bit_Scrolling", "05c-Lcd_4bit_Scrolling.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Example Code/08b-Eeprom_String_RdWr/08b-Eeprom_String_RdWr.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "08b-Eeprom_String_RdWr", "08b-Eeprom_String_RdWr.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Code/AVR Tutorial Code/EXT_INTR_Edge_Level/11b-EXT_INTR_Edge_Level.atsln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Atmel Studio Solution File, Format Version 11.00 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{54F91283-7BC4-4236-8FF9-10F437C3AD48}") = "11b-EXT_INTR_Edge_Level", "11b-EXT_INTR_Edge_Level.cproj", "{DCE6C7E3-EE26-4D79-826B-08594B9AD897}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|AVR = Debug|AVR 11 | Release|AVR = Release|AVR 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.ActiveCfg = Debug|AVR 15 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Debug|AVR.Build.0 = Debug|AVR 16 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.ActiveCfg = Release|AVR 17 | {DCE6C7E3-EE26-4D79-826B-08594B9AD897}.Release|AVR.Build.0 = Release|AVR 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | --------------------------------------------------------------------------------