├── .cproject ├── .gitignore ├── .project ├── .settings └── de.innot.avreclipse.core.prefs ├── GuideLines_to_Learn_Git.pdf ├── HAL ├── Documentations │ ├── Bluetooth_Documentation.pdf │ ├── ESP8266_Documentation.pdf │ ├── SkyLabGPS_Documentation.pdf │ ├── UltraSonic_design_document.pdf │ ├── nRF2401+_Documentation.pdf │ └── wavecom_Documentation.pdf ├── EF_7Segment.c ├── EF_7Segment.h ├── EF_Bluetooth.c ├── EF_Bluetooth.h ├── EF_Bluetooth_cfg.h ├── EF_DS1307.c ├── EF_DS1307.h ├── EF_E2PROM_24C16.c ├── EF_E2PROM_24C16.h ├── EF_ESP8266.c ├── EF_ESP8266.h ├── EF_ESP8266_cfg.h ├── EF_KeyPad.h ├── EF_Keypad.c ├── EF_LCD.c ├── EF_LCD.h ├── EF_SkyLabGPS.c ├── EF_SkyLabGPS.h ├── EF_UltraSonic.c ├── EF_UltraSonic.h ├── EF_Wavecom.c ├── EF_Wavecom.h ├── EF_nRF2401.c ├── EF_nRF2401.h ├── EF_nRF2401_cfg.h ├── LCD_needTest_Ibrahim.rar └── References │ ├── Bluetooth_VeryGoodTutorial.txt │ ├── EEPROM-24c16.pdf │ ├── ESP8266ATCommandsSet.pdf │ ├── ESP8266_WiFi_4A-AT-Espressif_AT_Instruction_Set_020.pdf │ ├── ESP8266_WiFi_4B-AT-Espressif_AT_Command_Examples_v0.3.pdf │ ├── ESP8266_WiFi_Module_Quick_Start_Guide_v_1.0.4.pdf │ ├── Embedded_Bluetooth_Serial_Communication_Module.pdf │ ├── GPS_NMEA Reference Manual-Rev2.1-Dec07.pdf │ ├── GPS_SKM53_Datasheet.pdf │ ├── GSM_SIM900_AT Command Manual_V1.03.pdf │ ├── GSM_fastrack_m1306b.pdf │ ├── GSM_gsm822w.pdf │ ├── HC-SR04Users_Manual.pdf │ ├── HC-SR04_Ultrasonic_Module_User_Guide[1].pdf │ ├── KIT_Features_and_Pin_Connections.pdf │ ├── RTC_DS1307.pdf │ ├── ReadMe.txt │ ├── nRF24L01P_Product_Specification_1_0.pdf │ └── nRF_Guide.pdf ├── MCAL ├── EF_ADC.c ├── EF_ADC.h ├── EF_DIO.c ├── EF_DIO.h ├── EF_EEPROM.c ├── EF_EEPROM.h ├── EF_I2C.c ├── EF_I2C.h ├── EF_InputCapture.c ├── EF_InputCapture.h ├── EF_PWM.c ├── EF_PWM.h ├── EF_PWM_cfg.h ├── EF_SPI.c ├── EF_SPI.h ├── EF_SPI_cfg.h ├── EF_SpechialTIMER.c ├── EF_SpechialTIMER.h ├── EF_SpechialTIMER_cfg.h ├── EF_Timer.c ├── EF_Timer.h ├── EF_Timer_cfg.h ├── EF_UART.c ├── EF_UART.h └── EF_UART_cfg.h ├── Readme.txt ├── Release ├── HAL │ ├── EF_7Segment.d │ ├── EF_7Segment.o │ ├── EF_Bluetooth.d │ ├── EF_DS1307.d │ ├── EF_DS1307.o │ ├── EF_E2PROM_24C16.d │ ├── EF_E2PROM_24C16.o │ ├── EF_ESP8266.d │ ├── EF_Keypad.d │ ├── EF_Keypad.o │ ├── EF_LCD.d │ ├── EF_LCD.o │ ├── EF_SkyLabGPS.d │ ├── EF_SkyLabGPS.o │ ├── EF_UltraSonic.d │ ├── EF_UltraSonic.o │ ├── EF_Wavecom.d │ ├── EF_Wavecom.o │ ├── EF_nRF2401.d │ └── subdir.mk ├── MCAL │ ├── EF_ADC.d │ ├── EF_ADC.o │ ├── EF_DIO.d │ ├── EF_DIO.o │ ├── EF_EEPROM.d │ ├── EF_EEPROM.o │ ├── EF_I2C.d │ ├── EF_I2C.o │ ├── EF_InputCapture.d │ ├── EF_InputCapture.o │ ├── EF_PWM.d │ ├── EF_PWM.o │ ├── EF_SPI.d │ ├── EF_SPI.o │ ├── EF_SpechialTIMER.d │ ├── EF_SpechialTIMER.o │ ├── EF_Timer.d │ ├── EF_Timer.o │ ├── EF_UART.d │ ├── EF_UART.o │ └── subdir.mk ├── RedKitDrivers.eep ├── RedKitDrivers.elf ├── RedKitDrivers.hex ├── RedKitDrivers.lss ├── RedKitDrivers.map ├── main.d ├── main.o ├── makefile ├── objects.mk ├── sources.mk └── subdir.mk ├── ServiceLayer └── std_types.h └── main.c /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/.project -------------------------------------------------------------------------------- /.settings/de.innot.avreclipse.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/.settings/de.innot.avreclipse.core.prefs -------------------------------------------------------------------------------- /GuideLines_to_Learn_Git.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/GuideLines_to_Learn_Git.pdf -------------------------------------------------------------------------------- /HAL/Documentations/Bluetooth_Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/Documentations/Bluetooth_Documentation.pdf -------------------------------------------------------------------------------- /HAL/Documentations/ESP8266_Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/Documentations/ESP8266_Documentation.pdf -------------------------------------------------------------------------------- /HAL/Documentations/SkyLabGPS_Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/Documentations/SkyLabGPS_Documentation.pdf -------------------------------------------------------------------------------- /HAL/Documentations/UltraSonic_design_document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/Documentations/UltraSonic_design_document.pdf -------------------------------------------------------------------------------- /HAL/Documentations/nRF2401+_Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/Documentations/nRF2401+_Documentation.pdf -------------------------------------------------------------------------------- /HAL/Documentations/wavecom_Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/Documentations/wavecom_Documentation.pdf -------------------------------------------------------------------------------- /HAL/EF_7Segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_7Segment.c -------------------------------------------------------------------------------- /HAL/EF_7Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_7Segment.h -------------------------------------------------------------------------------- /HAL/EF_Bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_Bluetooth.c -------------------------------------------------------------------------------- /HAL/EF_Bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_Bluetooth.h -------------------------------------------------------------------------------- /HAL/EF_Bluetooth_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_Bluetooth_cfg.h -------------------------------------------------------------------------------- /HAL/EF_DS1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_DS1307.c -------------------------------------------------------------------------------- /HAL/EF_DS1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_DS1307.h -------------------------------------------------------------------------------- /HAL/EF_E2PROM_24C16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_E2PROM_24C16.c -------------------------------------------------------------------------------- /HAL/EF_E2PROM_24C16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_E2PROM_24C16.h -------------------------------------------------------------------------------- /HAL/EF_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_ESP8266.c -------------------------------------------------------------------------------- /HAL/EF_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_ESP8266.h -------------------------------------------------------------------------------- /HAL/EF_ESP8266_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_ESP8266_cfg.h -------------------------------------------------------------------------------- /HAL/EF_KeyPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_KeyPad.h -------------------------------------------------------------------------------- /HAL/EF_Keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_Keypad.c -------------------------------------------------------------------------------- /HAL/EF_LCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_LCD.c -------------------------------------------------------------------------------- /HAL/EF_LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_LCD.h -------------------------------------------------------------------------------- /HAL/EF_SkyLabGPS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_SkyLabGPS.c -------------------------------------------------------------------------------- /HAL/EF_SkyLabGPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_SkyLabGPS.h -------------------------------------------------------------------------------- /HAL/EF_UltraSonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_UltraSonic.c -------------------------------------------------------------------------------- /HAL/EF_UltraSonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_UltraSonic.h -------------------------------------------------------------------------------- /HAL/EF_Wavecom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_Wavecom.c -------------------------------------------------------------------------------- /HAL/EF_Wavecom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_Wavecom.h -------------------------------------------------------------------------------- /HAL/EF_nRF2401.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_nRF2401.c -------------------------------------------------------------------------------- /HAL/EF_nRF2401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_nRF2401.h -------------------------------------------------------------------------------- /HAL/EF_nRF2401_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/EF_nRF2401_cfg.h -------------------------------------------------------------------------------- /HAL/LCD_needTest_Ibrahim.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/LCD_needTest_Ibrahim.rar -------------------------------------------------------------------------------- /HAL/References/Bluetooth_VeryGoodTutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/Bluetooth_VeryGoodTutorial.txt -------------------------------------------------------------------------------- /HAL/References/EEPROM-24c16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/EEPROM-24c16.pdf -------------------------------------------------------------------------------- /HAL/References/ESP8266ATCommandsSet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/ESP8266ATCommandsSet.pdf -------------------------------------------------------------------------------- /HAL/References/ESP8266_WiFi_4A-AT-Espressif_AT_Instruction_Set_020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/ESP8266_WiFi_4A-AT-Espressif_AT_Instruction_Set_020.pdf -------------------------------------------------------------------------------- /HAL/References/ESP8266_WiFi_4B-AT-Espressif_AT_Command_Examples_v0.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/ESP8266_WiFi_4B-AT-Espressif_AT_Command_Examples_v0.3.pdf -------------------------------------------------------------------------------- /HAL/References/ESP8266_WiFi_Module_Quick_Start_Guide_v_1.0.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/ESP8266_WiFi_Module_Quick_Start_Guide_v_1.0.4.pdf -------------------------------------------------------------------------------- /HAL/References/Embedded_Bluetooth_Serial_Communication_Module.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/Embedded_Bluetooth_Serial_Communication_Module.pdf -------------------------------------------------------------------------------- /HAL/References/GPS_NMEA Reference Manual-Rev2.1-Dec07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/GPS_NMEA Reference Manual-Rev2.1-Dec07.pdf -------------------------------------------------------------------------------- /HAL/References/GPS_SKM53_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/GPS_SKM53_Datasheet.pdf -------------------------------------------------------------------------------- /HAL/References/GSM_SIM900_AT Command Manual_V1.03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/GSM_SIM900_AT Command Manual_V1.03.pdf -------------------------------------------------------------------------------- /HAL/References/GSM_fastrack_m1306b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/GSM_fastrack_m1306b.pdf -------------------------------------------------------------------------------- /HAL/References/GSM_gsm822w.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/GSM_gsm822w.pdf -------------------------------------------------------------------------------- /HAL/References/HC-SR04Users_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/HC-SR04Users_Manual.pdf -------------------------------------------------------------------------------- /HAL/References/HC-SR04_Ultrasonic_Module_User_Guide[1].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/HC-SR04_Ultrasonic_Module_User_Guide[1].pdf -------------------------------------------------------------------------------- /HAL/References/KIT_Features_and_Pin_Connections.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/KIT_Features_and_Pin_Connections.pdf -------------------------------------------------------------------------------- /HAL/References/RTC_DS1307.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/RTC_DS1307.pdf -------------------------------------------------------------------------------- /HAL/References/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/ReadMe.txt -------------------------------------------------------------------------------- /HAL/References/nRF24L01P_Product_Specification_1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/nRF24L01P_Product_Specification_1_0.pdf -------------------------------------------------------------------------------- /HAL/References/nRF_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/HAL/References/nRF_Guide.pdf -------------------------------------------------------------------------------- /MCAL/EF_ADC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_ADC.c -------------------------------------------------------------------------------- /MCAL/EF_ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_ADC.h -------------------------------------------------------------------------------- /MCAL/EF_DIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_DIO.c -------------------------------------------------------------------------------- /MCAL/EF_DIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_DIO.h -------------------------------------------------------------------------------- /MCAL/EF_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_EEPROM.c -------------------------------------------------------------------------------- /MCAL/EF_EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_EEPROM.h -------------------------------------------------------------------------------- /MCAL/EF_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_I2C.c -------------------------------------------------------------------------------- /MCAL/EF_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_I2C.h -------------------------------------------------------------------------------- /MCAL/EF_InputCapture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_InputCapture.c -------------------------------------------------------------------------------- /MCAL/EF_InputCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_InputCapture.h -------------------------------------------------------------------------------- /MCAL/EF_PWM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_PWM.c -------------------------------------------------------------------------------- /MCAL/EF_PWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_PWM.h -------------------------------------------------------------------------------- /MCAL/EF_PWM_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_PWM_cfg.h -------------------------------------------------------------------------------- /MCAL/EF_SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_SPI.c -------------------------------------------------------------------------------- /MCAL/EF_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_SPI.h -------------------------------------------------------------------------------- /MCAL/EF_SPI_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_SPI_cfg.h -------------------------------------------------------------------------------- /MCAL/EF_SpechialTIMER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_SpechialTIMER.c -------------------------------------------------------------------------------- /MCAL/EF_SpechialTIMER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_SpechialTIMER.h -------------------------------------------------------------------------------- /MCAL/EF_SpechialTIMER_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_SpechialTIMER_cfg.h -------------------------------------------------------------------------------- /MCAL/EF_Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_Timer.c -------------------------------------------------------------------------------- /MCAL/EF_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_Timer.h -------------------------------------------------------------------------------- /MCAL/EF_Timer_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_Timer_cfg.h -------------------------------------------------------------------------------- /MCAL/EF_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_UART.c -------------------------------------------------------------------------------- /MCAL/EF_UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_UART.h -------------------------------------------------------------------------------- /MCAL/EF_UART_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/MCAL/EF_UART_cfg.h -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Readme.txt -------------------------------------------------------------------------------- /Release/HAL/EF_7Segment.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_7Segment.d -------------------------------------------------------------------------------- /Release/HAL/EF_7Segment.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_7Segment.o -------------------------------------------------------------------------------- /Release/HAL/EF_Bluetooth.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_Bluetooth.d -------------------------------------------------------------------------------- /Release/HAL/EF_DS1307.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_DS1307.d -------------------------------------------------------------------------------- /Release/HAL/EF_DS1307.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_DS1307.o -------------------------------------------------------------------------------- /Release/HAL/EF_E2PROM_24C16.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_E2PROM_24C16.d -------------------------------------------------------------------------------- /Release/HAL/EF_E2PROM_24C16.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_E2PROM_24C16.o -------------------------------------------------------------------------------- /Release/HAL/EF_ESP8266.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_ESP8266.d -------------------------------------------------------------------------------- /Release/HAL/EF_Keypad.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_Keypad.d -------------------------------------------------------------------------------- /Release/HAL/EF_Keypad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_Keypad.o -------------------------------------------------------------------------------- /Release/HAL/EF_LCD.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_LCD.d -------------------------------------------------------------------------------- /Release/HAL/EF_LCD.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_LCD.o -------------------------------------------------------------------------------- /Release/HAL/EF_SkyLabGPS.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_SkyLabGPS.d -------------------------------------------------------------------------------- /Release/HAL/EF_SkyLabGPS.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_SkyLabGPS.o -------------------------------------------------------------------------------- /Release/HAL/EF_UltraSonic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_UltraSonic.d -------------------------------------------------------------------------------- /Release/HAL/EF_UltraSonic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_UltraSonic.o -------------------------------------------------------------------------------- /Release/HAL/EF_Wavecom.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_Wavecom.d -------------------------------------------------------------------------------- /Release/HAL/EF_Wavecom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_Wavecom.o -------------------------------------------------------------------------------- /Release/HAL/EF_nRF2401.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/EF_nRF2401.d -------------------------------------------------------------------------------- /Release/HAL/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/HAL/subdir.mk -------------------------------------------------------------------------------- /Release/MCAL/EF_ADC.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_ADC.d -------------------------------------------------------------------------------- /Release/MCAL/EF_ADC.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_ADC.o -------------------------------------------------------------------------------- /Release/MCAL/EF_DIO.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_DIO.d -------------------------------------------------------------------------------- /Release/MCAL/EF_DIO.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_DIO.o -------------------------------------------------------------------------------- /Release/MCAL/EF_EEPROM.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_EEPROM.d -------------------------------------------------------------------------------- /Release/MCAL/EF_EEPROM.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_EEPROM.o -------------------------------------------------------------------------------- /Release/MCAL/EF_I2C.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_I2C.d -------------------------------------------------------------------------------- /Release/MCAL/EF_I2C.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_I2C.o -------------------------------------------------------------------------------- /Release/MCAL/EF_InputCapture.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_InputCapture.d -------------------------------------------------------------------------------- /Release/MCAL/EF_InputCapture.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_InputCapture.o -------------------------------------------------------------------------------- /Release/MCAL/EF_PWM.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_PWM.d -------------------------------------------------------------------------------- /Release/MCAL/EF_PWM.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_PWM.o -------------------------------------------------------------------------------- /Release/MCAL/EF_SPI.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_SPI.d -------------------------------------------------------------------------------- /Release/MCAL/EF_SPI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_SPI.o -------------------------------------------------------------------------------- /Release/MCAL/EF_SpechialTIMER.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_SpechialTIMER.d -------------------------------------------------------------------------------- /Release/MCAL/EF_SpechialTIMER.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_SpechialTIMER.o -------------------------------------------------------------------------------- /Release/MCAL/EF_Timer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_Timer.d -------------------------------------------------------------------------------- /Release/MCAL/EF_Timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_Timer.o -------------------------------------------------------------------------------- /Release/MCAL/EF_UART.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_UART.d -------------------------------------------------------------------------------- /Release/MCAL/EF_UART.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/EF_UART.o -------------------------------------------------------------------------------- /Release/MCAL/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/MCAL/subdir.mk -------------------------------------------------------------------------------- /Release/RedKitDrivers.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/RedKitDrivers.eep -------------------------------------------------------------------------------- /Release/RedKitDrivers.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/RedKitDrivers.elf -------------------------------------------------------------------------------- /Release/RedKitDrivers.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/RedKitDrivers.hex -------------------------------------------------------------------------------- /Release/RedKitDrivers.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/RedKitDrivers.lss -------------------------------------------------------------------------------- /Release/RedKitDrivers.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/RedKitDrivers.map -------------------------------------------------------------------------------- /Release/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/main.d -------------------------------------------------------------------------------- /Release/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/main.o -------------------------------------------------------------------------------- /Release/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/makefile -------------------------------------------------------------------------------- /Release/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/objects.mk -------------------------------------------------------------------------------- /Release/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/sources.mk -------------------------------------------------------------------------------- /Release/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/Release/subdir.mk -------------------------------------------------------------------------------- /ServiceLayer/std_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/ServiceLayer/std_types.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbeddedFab/EF_AVR_Lib/HEAD/main.c --------------------------------------------------------------------------------