├── .gitignore ├── NXP ├── Code │ ├── Chapter_2 │ │ ├── EventRecorderStub.scvd │ │ ├── GPIO.uvguix.Alex │ │ ├── GPIO.uvoptx │ │ ├── GPIO.uvprojx │ │ ├── JLinkSettings.ini │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _Target_1 │ │ │ │ └── RTE_Components.h │ │ └── Source │ │ │ └── main.c │ ├── Chapter_3 │ │ └── Basic_Concurrency │ │ │ ├── Basic_Concurrency.uvguix.Alex │ │ │ ├── Basic_Concurrency.uvoptx │ │ │ ├── Basic_Concurrency.uvprojx │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── JLinkSettings.ini │ │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _Target_1 │ │ │ │ └── RTE_Components.h │ │ │ ├── Source │ │ │ ├── gpio_defs.h │ │ │ └── main.c │ │ │ └── pemicro_connection_settings.ini │ ├── Chapter_5 │ │ └── CinAsmDemo │ │ │ ├── CinAsmDemo.uvguix.Alex │ │ │ ├── CinAsmDemo.uvoptx │ │ │ ├── CinAsmDemo.uvprojx │ │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _Target_1 │ │ │ │ └── RTE_Components.h │ │ │ └── Source │ │ │ ├── data.c │ │ │ └── main.c │ ├── Chapter_6 │ │ ├── Analog - IR Proximity Sensor │ │ │ ├── Analog - IR Proximity Sensor.uvguix.Alex │ │ │ ├── Analog - IR Proximity Sensor.uvoptx │ │ │ ├── Analog - IR Proximity Sensor.uvprojx │ │ │ ├── Include │ │ │ │ ├── LEDs.h │ │ │ │ └── user_defs.h │ │ │ ├── RTE │ │ │ │ ├── Device │ │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ │ └── system_MKL25Z4.h │ │ │ │ └── _Target_1 │ │ │ │ │ └── RTE_Components.h │ │ │ └── Source │ │ │ │ ├── LEDs.c │ │ │ │ └── main.c │ │ └── Analog Demo │ │ │ ├── Analog.uvgui.Alex │ │ │ ├── Analog.uvguix.Alex │ │ │ ├── Analog.uvopt │ │ │ ├── Analog.uvoptx │ │ │ ├── Analog.uvprojx │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── JLinkSettings.ini │ │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _KL25Z_Flash │ │ │ │ └── RTE_Components.h │ │ │ ├── asm │ │ │ └── startup_MKL25Z4.s │ │ │ ├── inc │ │ │ ├── LEDs.h │ │ │ └── user_defs.h │ │ │ ├── pemicro_connection_settings.ini │ │ │ └── src │ │ │ ├── LEDs.c │ │ │ ├── main.c │ │ │ └── system_MKL25Z4.c │ ├── Chapter_7 │ │ ├── Analog Waveform Generation │ │ │ ├── Analog.uvgui.Alex │ │ │ ├── Analog.uvguix.Alex │ │ │ ├── Analog.uvopt │ │ │ ├── Analog.uvoptx │ │ │ ├── Analog.uvprojx │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── JLinkSettings.ini │ │ │ ├── RTE │ │ │ │ ├── Device │ │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ │ └── system_MKL25Z4.h │ │ │ │ └── _KL25Z_Flash │ │ │ │ │ └── RTE_Components.h │ │ │ ├── asm │ │ │ │ └── startup_MKL25Z4.s │ │ │ ├── inc │ │ │ │ ├── LEDs.h │ │ │ │ ├── timers.h │ │ │ │ └── user_defs.h │ │ │ ├── pemicro_connection_settings.ini │ │ │ └── src │ │ │ │ ├── LEDs.c │ │ │ │ ├── main.c │ │ │ │ └── timers.c │ │ ├── PWM_LED │ │ │ ├── Include │ │ │ │ ├── LEDs.h │ │ │ │ └── timers.h │ │ │ ├── PWM_LED_Dimming.uvguix.Alex │ │ │ ├── PWM_LED_Dimming.uvoptx │ │ │ ├── PWM_LED_Dimming.uvprojx │ │ │ ├── RTE │ │ │ │ ├── Device │ │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ │ └── system_MKL25Z4.h │ │ │ │ └── _Target_1 │ │ │ │ │ └── RTE_Components.h │ │ │ ├── Source │ │ │ │ ├── main.c │ │ │ │ └── timers.c │ │ │ └── pemicro_connection_settings.ini │ │ └── WDT Demo │ │ │ ├── BasicUI.uvgui.Alex │ │ │ ├── BasicUI.uvguix.Alex │ │ │ ├── BasicUI.uvopt │ │ │ ├── BasicUI.uvoptx │ │ │ ├── BasicUI.uvprojx │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── JLinkSettings.ini │ │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _KL25Z_Flash │ │ │ │ └── RTE_Components.h │ │ │ ├── inc │ │ │ ├── COP_WDT.h │ │ │ ├── GPIO_defs.h │ │ │ ├── LEDs.h │ │ │ ├── config.h │ │ │ ├── delay.h │ │ │ ├── i2c.h │ │ │ └── mma8451.h │ │ │ ├── src │ │ │ ├── COP_WDT.c │ │ │ ├── LEDs.c │ │ │ ├── delay.c │ │ │ ├── i2c.c │ │ │ ├── main.c │ │ │ ├── mma8451.c │ │ │ ├── startup_MKL25Z4.s │ │ │ └── system_MKL25Z4.c │ │ │ └── startup_MKL25Z4.s │ ├── Chapter_8 │ │ ├── FRDM_SPI │ │ │ ├── Analog.uvgui.Alex │ │ │ ├── Analog.uvgui.QZ │ │ │ ├── Analog.uvgui.Siddhartha │ │ │ ├── Analog.uvgui.ajuneja │ │ │ ├── Analog.uvguix.Alex │ │ │ ├── Analog.uvopt │ │ │ ├── Analog.uvoptx │ │ │ ├── Analog.uvprojx │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── JLinkSettings.ini │ │ │ ├── LEDs.c │ │ │ ├── RTE │ │ │ │ ├── Device │ │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ │ └── system_MKL25Z4.h │ │ │ │ └── _KL25Z_Flash │ │ │ │ │ └── RTE_Components.h │ │ │ ├── SPI_Pin_Config │ │ │ ├── asm │ │ │ │ └── startup_MKL25Z4.s │ │ │ ├── inc │ │ │ │ ├── LEDs.h │ │ │ │ ├── adc_aj.h │ │ │ │ ├── control_aj.h │ │ │ │ ├── gpio_aj.h │ │ │ │ ├── pit_aj.h │ │ │ │ ├── pwm_aj.h │ │ │ │ ├── sim_aj.h │ │ │ │ └── user_defs.h │ │ │ └── src │ │ │ │ ├── LEDs.c │ │ │ │ ├── SD.h │ │ │ │ ├── gpio_aj.c │ │ │ │ ├── main.c │ │ │ │ ├── sd.c │ │ │ │ ├── sim_aj.c │ │ │ │ ├── spi_aj.c │ │ │ │ └── spi_aj.h │ │ ├── I2C-Demo │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── I2C-Demo.uvguix.Alex │ │ │ ├── I2C-Demo.uvoptx │ │ │ ├── I2C-Demo.uvprojx │ │ │ ├── JLinkSettings.ini │ │ │ ├── RTE │ │ │ │ ├── Device │ │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ │ └── system_MKL25Z4.h │ │ │ │ └── _Target_1 │ │ │ │ │ └── RTE_Components.h │ │ │ ├── inc │ │ │ │ ├── GPIO_defs.h │ │ │ │ ├── LEDs.h │ │ │ │ ├── delay.h │ │ │ │ ├── i2c.h │ │ │ │ └── mma8451.h │ │ │ ├── pemicro_connection_settings.ini │ │ │ └── src │ │ │ │ ├── LEDs.c │ │ │ │ ├── delay.c │ │ │ │ ├── i2c.c │ │ │ │ ├── main.c │ │ │ │ └── mma8451.c │ │ └── Serial-Demo │ │ │ ├── JLinkSettings.ini │ │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _Target_1 │ │ │ │ └── RTE_Components.h │ │ │ ├── Serial-Demo.uvguix.Alex │ │ │ ├── Serial-Demo.uvoptx │ │ │ ├── Serial-Demo.uvprojx │ │ │ ├── inc │ │ │ ├── GPIO_defs.h │ │ │ ├── LEDs.h │ │ │ ├── UART.h │ │ │ ├── delay.h │ │ │ └── queue.h │ │ │ ├── pemicro_connection_settings.ini │ │ │ └── src │ │ │ ├── LEDs.c │ │ │ ├── UART.c │ │ │ ├── delay.c │ │ │ ├── main.c │ │ │ └── queue.c │ └── Chapter_9 │ │ └── DMA_Examples │ │ ├── DMA_Waveform_Generator.uvguix.Alex │ │ ├── DMA_Waveform_Generator.uvoptx │ │ ├── DMA_Waveform_Generator.uvprojx │ │ ├── Include │ │ ├── DMA.h │ │ ├── LEDs.h │ │ ├── gpio_defs.h │ │ ├── queue.h │ │ ├── switches.h │ │ ├── timers.h │ │ └── user_defs.h │ │ ├── JLinkSettings.ini │ │ ├── RTE │ │ ├── Device │ │ │ └── MKL25Z128xxx4 │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ └── system_MKL25Z4.h │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ │ ├── Source │ │ ├── DMA.c │ │ ├── LEDs.c │ │ ├── main.c │ │ ├── queue.c │ │ ├── switches.c │ │ └── timers.c │ │ └── pemicro_connection_settings.ini ├── Misc │ ├── Label Placement.pdf │ ├── Labels 180 P.pdf │ ├── Labels 180 P.pptx │ └── Touch Sense │ │ ├── IR_Prox_TSI │ │ ├── EventRecorderStub.scvd │ │ ├── JLinkLog.txt │ │ ├── JLinkSettings.ini │ │ ├── Objects │ │ │ ├── Serial-Demo.build_log.htm │ │ │ └── Serial-Demo.htm │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _Target_1 │ │ │ │ └── RTE_Components.h │ │ ├── Touch_Slider.uvguix.Alex │ │ ├── Touch_Slider.uvguix.Paras Vora │ │ ├── Touch_Slider.uvoptx │ │ ├── Touch_Slider.uvprojx │ │ ├── inc │ │ │ ├── GPIO_defs.h │ │ │ ├── HBLED.h │ │ │ ├── LEDs.h │ │ │ ├── UART.h │ │ │ ├── delay.h │ │ │ ├── tpm.h │ │ │ └── user_defs.h │ │ ├── pemicro_connection_settings.ini │ │ └── src │ │ │ ├── LEDs.c │ │ │ ├── UART.c │ │ │ ├── delay.c │ │ │ ├── main.c │ │ │ ├── queue.c │ │ │ └── tpm.c │ │ ├── TSI │ │ ├── EventRecorderStub.scvd │ │ ├── JLinkLog.txt │ │ ├── JLinkSettings.ini │ │ ├── RTE │ │ │ ├── Device │ │ │ │ └── MKL25Z128xxx4 │ │ │ │ │ ├── startup_MKL25Z4.s │ │ │ │ │ ├── system_MKL25Z4.c │ │ │ │ │ └── system_MKL25Z4.h │ │ │ └── _Target_1 │ │ │ │ └── RTE_Components.h │ │ ├── Touch_Slider.uvguix.Alex │ │ ├── Touch_Slider.uvguix.Paras Vora │ │ ├── Touch_Slider.uvoptx │ │ ├── Touch_Slider.uvprojx │ │ ├── inc │ │ │ ├── GPIO_defs.h │ │ │ ├── HBLED.h │ │ │ ├── LEDs.h │ │ │ ├── UART.h │ │ │ ├── delay.h │ │ │ └── tpm.h │ │ ├── pemicro_connection_settings.ini │ │ └── src │ │ │ ├── LEDs.c │ │ │ ├── UART.c │ │ │ ├── delay.c │ │ │ ├── main.c │ │ │ ├── queue.c │ │ │ └── tpm.c │ │ ├── TSI_Module_report.docx │ │ └── TSI_module.pptx ├── Slides │ ├── Chapter 1 │ │ └── Introduction.pptx │ ├── Chapter 2 │ │ ├── CMSIS.pptx │ │ └── GPIO.pptx │ ├── Chapter 3 │ │ └── Basic_Concurrency.pptx │ ├── Chapter 4 │ │ ├── CPU.pptx │ │ └── Interrupts.pptx │ ├── Chapter 5 │ │ └── How C Code is Really Implemented.pptx │ ├── Chapter 6 │ │ └── Analog Interfacing.pptx │ ├── Chapter 7 │ │ └── Timers.pptx │ ├── Chapter 8 │ │ └── Serial Communications.pptx │ └── Chapter 9 │ │ └── DMA.pptx └── Tools │ ├── ESF Software Tool Installation Instructions.pdf │ ├── Keil MDK Installation - apnt_232_v3.2.pdf │ └── OpenSDA │ ├── BOOTUPDATEAPP_Pemicro_v111.SDA │ ├── Bootloader Update.pdf │ ├── CMSIS-DAP.S19 │ ├── MSD-DEBUG-FRDM-KL25Z_Pemicro_v118.SDA │ ├── PEDrivers_install.exe │ └── Segger_12_OpenSDA_FRDM-KL25Z.bin ├── README.md └── ST └── Code ├── ch2 ├── Basic-LED-HAL │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── basic_led_hal.uvguix.Alex │ ├── basic_led_hal.uvguix.elipig01 │ ├── basic_led_hal.uvoptx │ ├── basic_led_hal.uvprojx │ └── main.c ├── Basic-LED │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── NewFile.rtf │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── basic_led.uvguix.Alex │ ├── basic_led.uvguix.elipig01 │ ├── basic_led.uvoptx │ ├── basic_led.uvprojx │ ├── main.c │ └── main.c.rtf ├── Beep │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── beep.uvguix.Alex │ ├── beep.uvguix.elipig01 │ ├── beep.uvoptx │ ├── beep.uvprojx │ └── main.c ├── Exercise7 │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── ex7.uvguix.Alex │ ├── ex7.uvguix.elipig01 │ ├── ex7.uvoptx │ ├── ex7.uvprojx │ └── main.c └── RGB-Flasher │ ├── DebugConfig │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ ├── Device │ │ └── STM32F091RCTx │ │ │ ├── startup_stm32f091xc.s │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ └── system_stm32f0xx.c │ └── _Target_1 │ │ └── RTE_Components.h │ ├── main.c │ ├── rgb_flasher.uvguix.Alex │ ├── rgb_flasher.uvguix.elipig01 │ ├── rgb_flasher.uvoptx │ └── rgb_flasher.uvprojx ├── ch3 ├── Flasher1 │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── flasher1.uvguix.Alex │ ├── flasher1.uvguix.elipig01 │ ├── flasher1.uvoptx │ ├── flasher1.uvprojx │ └── main.c ├── Flasher2 │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── flasher2.uvguix.Alex │ ├── flasher2.uvguix.elipig01 │ ├── flasher2.uvoptx │ ├── flasher2.uvprojx │ └── main.c ├── Flasher3 │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── FlasherSpaghetti.c │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── flasher3.uvguix.Alex │ ├── flasher3.uvguix.elipig01 │ ├── flasher3.uvoptx │ ├── flasher3.uvprojx │ └── main.c ├── Flasher4 │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── flasher4.uvguix.Alex │ ├── flasher4.uvguix.elipig01 │ ├── flasher4.uvoptx │ ├── flasher4.uvprojx │ └── main.c └── Flasher5 │ ├── DebugConfig │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ ├── Device │ │ └── STM32F091RCTx │ │ │ ├── startup_stm32f091xc.s │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ └── system_stm32f0xx.c │ └── _Target_1 │ │ └── RTE_Components.h │ ├── flasher5.uvguix.Alex │ ├── flasher5.uvguix.elipig01 │ ├── flasher5.uvoptx │ ├── flasher5.uvprojx │ └── main.c ├── ch4 ├── Initialize-interrupt-HAL │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── initialize_interrupt_hal.uvguix.Alex │ ├── initialize_interrupt_hal.uvguix.elipig01 │ ├── initialize_interrupt_hal.uvoptx │ ├── initialize_interrupt_hal.uvprojx │ └── main.c └── Initialize-interrupt │ ├── DebugConfig │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ ├── Device │ │ └── STM32F091RCTx │ │ │ ├── startup_stm32f091xc.s │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ └── system_stm32f0xx.c │ └── _Target_1 │ │ └── RTE_Components.h │ ├── initialize_interrupt.uvguix.Alex │ ├── initialize_interrupt.uvguix.elipig01 │ ├── initialize_interrupt.uvoptx │ ├── initialize_interrupt.uvprojx │ └── main.c ├── ch5 └── CinAsmDemo │ ├── BasicUI.uvgui.Alex │ ├── BasicUI.uvopt │ ├── BasicUI.uvproj │ ├── lst │ ├── data.txt │ ├── main.txt │ └── system_mkl25z4_1.txt │ ├── obj │ ├── BasicUI.build_log.htm │ └── BasicUI.htm │ └── src │ ├── data.c │ ├── main.c │ ├── startup_MKL25Z4.s │ └── system_MKL25Z4.c ├── ch6 ├── ADC-IR-Example │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── adc_ir.uvguix.Alex │ ├── adc_ir.uvguix.elipig01 │ ├── adc_ir.uvoptx │ ├── adc_ir.uvprojx │ └── main.c ├── ADC-Temperature-Example │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── adc_temperature.uvguix.Alex │ ├── adc_temperature.uvguix.elipig01 │ ├── adc_temperature.uvoptx │ ├── adc_temperature.uvprojx │ └── main.c ├── Comparator-Example │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── comparator.uvguix.Alex │ ├── comparator.uvguix.elipig01 │ ├── comparator.uvoptx │ ├── comparator.uvprojx │ └── main.c ├── DAC-Example │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── dac.uvguix.Alex │ ├── dac.uvguix.elipig01 │ ├── dac.uvoptx │ ├── dac.uvprojx │ └── main.c └── Exercise8 │ ├── DebugConfig │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ ├── Device │ │ └── STM32F091RCTx │ │ │ ├── startup_stm32f091xc.s │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ └── system_stm32f0xx.c │ └── _Target_1 │ │ └── RTE_Components.h │ ├── ex8.uvguix.Alex │ ├── ex8.uvguix.elipig01 │ ├── ex8.uvoptx │ ├── ex8.uvprojx │ └── main.c ├── ch7 ├── Basic-Timer │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── basic_timer.uvguix.Alex │ ├── basic_timer.uvguix.elipig01 │ ├── basic_timer.uvguix.fratan01 │ ├── basic_timer.uvoptx │ ├── basic_timer.uvprojx │ └── main.c ├── Input-Capture-Timer │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── input_capture_timer.uvguix.Alex │ ├── input_capture_timer.uvguix.elipig01 │ ├── input_capture_timer.uvguix.fratan01 │ ├── input_capture_timer.uvoptx │ ├── input_capture_timer.uvprojx │ └── main.c ├── PWM │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── main.c │ ├── pwm.uvguix.Alex │ ├── pwm.uvguix.elipig01 │ ├── pwm.uvguix.fratan01 │ ├── pwm.uvoptx │ └── pwm.uvprojx ├── SysTick │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── main.c │ ├── systick.uvguix.Alex │ ├── systick.uvguix.elipig01 │ ├── systick.uvguix.fratan01 │ ├── systick.uvoptx │ └── systick.uvprojx └── Watchdog │ ├── DebugConfig │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ ├── Device │ │ └── STM32F091RCTx │ │ │ ├── startup_stm32f091xc.s │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ └── system_stm32f0xx.c │ └── _Target_1 │ │ └── RTE_Components.h │ ├── main.c │ ├── watchdog.uvguix.Alex │ ├── watchdog.uvguix.elipig01 │ ├── watchdog.uvguix.fratan01 │ ├── watchdog.uvoptx │ └── watchdog.uvprojx ├── ch8 ├── I2C │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── i2c.uvguix.Alex │ ├── i2c.uvguix.elipig01 │ ├── i2c.uvguix.fratan01 │ ├── i2c.uvoptx │ ├── i2c.uvprojx │ └── main.c ├── SPI │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── main.c │ ├── spi.uvguix.Alex │ ├── spi.uvguix.elipig01 │ ├── spi.uvguix.fratan01 │ ├── spi.uvoptx │ └── spi.uvprojx ├── USART-With-Interrupt │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── main.c │ ├── usart-with-irq.uvguix.Alex │ ├── usart-with-irq.uvguix.elipig01 │ ├── usart-with-irq.uvguix.fratan01 │ ├── usart-with-irq.uvoptx │ └── usart-with-irq.uvprojx └── USART │ ├── DebugConfig │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ ├── Device │ │ └── STM32F091RCTx │ │ │ ├── startup_stm32f091xc.s │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ └── system_stm32f0xx.c │ └── _Target_1 │ │ └── RTE_Components.h │ ├── main.c │ ├── usart.uvguix.Alex │ ├── usart.uvguix.elipig01 │ ├── usart.uvguix.fratan01 │ ├── usart.uvoptx │ └── usart.uvprojx ├── ch9 ├── Analog-Waveform-Generation │ ├── DebugConfig │ │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ │ ├── Device │ │ │ └── STM32F091RCTx │ │ │ │ ├── startup_stm32f091xc.s │ │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ │ └── system_stm32f0xx.c │ │ └── _Target_1 │ │ │ └── RTE_Components.h │ ├── analog_waveform_generation.uvguix.Alex │ ├── analog_waveform_generation.uvguix.elipig01 │ ├── analog_waveform_generation.uvguix.fratan01 │ ├── analog_waveform_generation.uvoptx │ ├── analog_waveform_generation.uvprojx │ ├── analog_wavefrom_generation.uvguix.Alex │ ├── analog_wavefrom_generation.uvguix.elipig01 │ ├── analog_wavefrom_generation.uvguix.fratan01 │ ├── analog_wavefrom_generation.uvoptx │ ├── analog_wavefrom_generation.uvprojx │ └── main.c └── Data-Bulk-Transfer │ ├── DebugConfig │ └── Target_1_STM32F091RCTx.dbgconf │ ├── EventRecorderStub.scvd │ ├── RTE │ ├── Device │ │ └── STM32F091RCTx │ │ │ ├── startup_stm32f091xc.s │ │ │ ├── stm32f0xx_hal_conf.h │ │ │ └── system_stm32f0xx.c │ └── _Target_1 │ │ └── RTE_Components.h │ ├── data_bulk_transfer.uvguix.Alex │ ├── data_bulk_transfer.uvguix.elipig01 │ ├── data_bulk_transfer.uvguix.fratan01 │ ├── data_bulk_transfer.uvoptx │ ├── data_bulk_transfer.uvprojx │ └── main.c └── common-driver ├── clock.c ├── clock.h ├── dac.c ├── dac.h ├── delay.c ├── delay.h ├── field_access.h ├── gpio.h ├── i2c.c ├── i2c.h ├── inertial_sensor.c ├── inertial_sensor.h ├── lsm6dso_reg.c ├── lsm6dso_reg.h ├── queue.c ├── queue.h ├── rgb.c ├── rgb.h ├── switch.c └── switch.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/.gitignore -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/GPIO.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/GPIO.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/GPIO.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/GPIO.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/GPIO.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/GPIO.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_2/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_2/Source/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/Basic_Concurrency.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/Basic_Concurrency.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/Basic_Concurrency.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/Basic_Concurrency.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/Basic_Concurrency.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/Basic_Concurrency.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/Source/gpio_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/Source/gpio_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/Source/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_3/Basic_Concurrency/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_3/Basic_Concurrency/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/CinAsmDemo.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/CinAsmDemo.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/CinAsmDemo.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/CinAsmDemo.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/CinAsmDemo.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/CinAsmDemo.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/Source/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/Source/data.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_5/CinAsmDemo/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_5/CinAsmDemo/Source/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Analog - IR Proximity Sensor.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Analog - IR Proximity Sensor.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Analog - IR Proximity Sensor.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Analog - IR Proximity Sensor.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Analog - IR Proximity Sensor.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Analog - IR Proximity Sensor.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Include/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Include/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Include/user_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Include/user_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Source/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Source/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog - IR Proximity Sensor/Source/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/Analog.uvgui.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/Analog.uvgui.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/Analog.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/Analog.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/Analog.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/Analog.uvopt -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/Analog.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/Analog.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/Analog.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/Analog.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/RTE/_KL25Z_Flash/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/RTE/_KL25Z_Flash/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/asm/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/asm/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/inc/user_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/inc/user_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/src/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_6/Analog Demo/src/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_6/Analog Demo/src/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvgui.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvgui.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvopt -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/Analog.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/RTE/_KL25Z_Flash/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/RTE/_KL25Z_Flash/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/asm/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/asm/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/inc/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/inc/timers.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/inc/user_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/inc/user_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/src/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/Analog Waveform Generation/src/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/Analog Waveform Generation/src/timers.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/Include/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/Include/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/Include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/Include/timers.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/PWM_LED_Dimming.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/PWM_LED_Dimming.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/PWM_LED_Dimming.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/PWM_LED_Dimming.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/PWM_LED_Dimming.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/PWM_LED_Dimming.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/Source/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/Source/timers.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/PWM_LED/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/PWM_LED/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/BasicUI.uvgui.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/BasicUI.uvgui.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/BasicUI.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/BasicUI.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/BasicUI.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/BasicUI.uvopt -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/BasicUI.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/BasicUI.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/BasicUI.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/BasicUI.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/RTE/_KL25Z_Flash/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/RTE/_KL25Z_Flash/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/inc/COP_WDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/inc/COP_WDT.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/inc/GPIO_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/inc/GPIO_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/inc/config.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/inc/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/inc/delay.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/inc/i2c.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/inc/mma8451.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/inc/mma8451.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/COP_WDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/COP_WDT.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/delay.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/i2c.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/mma8451.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/mma8451.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/src/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/src/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_7/WDT Demo/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_7/WDT Demo/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.QZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.QZ -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.Siddhartha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.Siddhartha -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.ajuneja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvgui.ajuneja -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvopt -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/Analog.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/Analog.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/RTE/_KL25Z_Flash/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/RTE/_KL25Z_Flash/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/SPI_Pin_Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/SPI_Pin_Config -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/asm/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/asm/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/adc_aj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/adc_aj.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/control_aj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/control_aj.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/gpio_aj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/gpio_aj.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/pit_aj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/pit_aj.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/pwm_aj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/pwm_aj.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/sim_aj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/sim_aj.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/inc/user_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/inc/user_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/SD.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/gpio_aj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/gpio_aj.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/sd.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/sim_aj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/sim_aj.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/spi_aj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/spi_aj.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/FRDM_SPI/src/spi_aj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/FRDM_SPI/src/spi_aj.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/I2C-Demo.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/I2C-Demo.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/I2C-Demo.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/I2C-Demo.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/I2C-Demo.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/I2C-Demo.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/inc/GPIO_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/inc/GPIO_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/inc/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/inc/delay.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/inc/i2c.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/inc/mma8451.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/inc/mma8451.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/src/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/src/delay.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/src/i2c.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/src/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/I2C-Demo/src/mma8451.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/I2C-Demo/src/mma8451.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/Serial-Demo.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/Serial-Demo.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/Serial-Demo.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/Serial-Demo.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/Serial-Demo.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/Serial-Demo.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/inc/GPIO_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/inc/GPIO_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/inc/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/inc/UART.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/inc/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/inc/delay.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/inc/queue.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/src/UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/src/UART.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/src/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/src/delay.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/src/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_8/Serial-Demo/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_8/Serial-Demo/src/queue.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/DMA_Waveform_Generator.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/DMA_Waveform_Generator.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/DMA_Waveform_Generator.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/DMA_Waveform_Generator.uvoptx -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/DMA_Waveform_Generator.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/DMA_Waveform_Generator.uvprojx -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Include/DMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Include/DMA.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Include/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Include/LEDs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Include/gpio_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Include/gpio_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Include/queue.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Include/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Include/switches.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Include/timers.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Include/user_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Include/user_defs.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Source/DMA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Source/DMA.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Source/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Source/LEDs.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Source/main.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Source/queue.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Source/switches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Source/switches.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/Source/timers.c -------------------------------------------------------------------------------- /NXP/Code/Chapter_9/DMA_Examples/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Code/Chapter_9/DMA_Examples/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Misc/Label Placement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Label Placement.pdf -------------------------------------------------------------------------------- /NXP/Misc/Labels 180 P.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Labels 180 P.pdf -------------------------------------------------------------------------------- /NXP/Misc/Labels 180 P.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Labels 180 P.pptx -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/JLinkLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/JLinkLog.txt -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/Objects/Serial-Demo.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/Objects/Serial-Demo.build_log.htm -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/Objects/Serial-Demo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/Objects/Serial-Demo.htm -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvguix.Paras Vora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvguix.Paras Vora -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvoptx -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/Touch_Slider.uvprojx -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/inc/GPIO_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/inc/GPIO_defs.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/inc/HBLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/inc/HBLED.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/inc/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/inc/UART.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/inc/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/inc/delay.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/inc/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/inc/tpm.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/inc/user_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/inc/user_defs.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/src/UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/src/UART.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/src/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/src/delay.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/src/main.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/src/queue.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/IR_Prox_TSI/src/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/IR_Prox_TSI/src/tpm.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/EventRecorderStub.scvd -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/JLinkLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/JLinkLog.txt -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/JLinkSettings.ini -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/RTE/Device/MKL25Z128xxx4/startup_MKL25Z4.s -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/RTE/Device/MKL25Z128xxx4/system_MKL25Z4.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/Touch_Slider.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/Touch_Slider.uvguix.Alex -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/Touch_Slider.uvguix.Paras Vora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/Touch_Slider.uvguix.Paras Vora -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/Touch_Slider.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/Touch_Slider.uvoptx -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/Touch_Slider.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/Touch_Slider.uvprojx -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/inc/GPIO_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/inc/GPIO_defs.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/inc/HBLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/inc/HBLED.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/inc/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/inc/LEDs.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/inc/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/inc/UART.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/inc/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/inc/delay.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/inc/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/inc/tpm.h -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/pemicro_connection_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/pemicro_connection_settings.ini -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/src/LEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/src/LEDs.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/src/UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/src/UART.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/src/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/src/delay.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/src/main.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/src/queue.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI/src/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI/src/tpm.c -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI_Module_report.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI_Module_report.docx -------------------------------------------------------------------------------- /NXP/Misc/Touch Sense/TSI_module.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Misc/Touch Sense/TSI_module.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 1/Introduction.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 1/Introduction.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 2/CMSIS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 2/CMSIS.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 2/GPIO.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 2/GPIO.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 3/Basic_Concurrency.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 3/Basic_Concurrency.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 4/CPU.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 4/CPU.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 4/Interrupts.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 4/Interrupts.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 5/How C Code is Really Implemented.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 5/How C Code is Really Implemented.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 6/Analog Interfacing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 6/Analog Interfacing.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 7/Timers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 7/Timers.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 8/Serial Communications.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 8/Serial Communications.pptx -------------------------------------------------------------------------------- /NXP/Slides/Chapter 9/DMA.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Slides/Chapter 9/DMA.pptx -------------------------------------------------------------------------------- /NXP/Tools/ESF Software Tool Installation Instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/ESF Software Tool Installation Instructions.pdf -------------------------------------------------------------------------------- /NXP/Tools/Keil MDK Installation - apnt_232_v3.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/Keil MDK Installation - apnt_232_v3.2.pdf -------------------------------------------------------------------------------- /NXP/Tools/OpenSDA/BOOTUPDATEAPP_Pemicro_v111.SDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/OpenSDA/BOOTUPDATEAPP_Pemicro_v111.SDA -------------------------------------------------------------------------------- /NXP/Tools/OpenSDA/Bootloader Update.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/OpenSDA/Bootloader Update.pdf -------------------------------------------------------------------------------- /NXP/Tools/OpenSDA/CMSIS-DAP.S19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/OpenSDA/CMSIS-DAP.S19 -------------------------------------------------------------------------------- /NXP/Tools/OpenSDA/MSD-DEBUG-FRDM-KL25Z_Pemicro_v118.SDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/OpenSDA/MSD-DEBUG-FRDM-KL25Z_Pemicro_v118.SDA -------------------------------------------------------------------------------- /NXP/Tools/OpenSDA/PEDrivers_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/OpenSDA/PEDrivers_install.exe -------------------------------------------------------------------------------- /NXP/Tools/OpenSDA/Segger_12_OpenSDA_FRDM-KL25Z.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/NXP/Tools/OpenSDA/Segger_12_OpenSDA_FRDM-KL25Z.bin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/README.md -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/basic_led_hal.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED-HAL/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED-HAL/main.c -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/NewFile.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/NewFile.rtf -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/basic_led.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/basic_led.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/basic_led.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/basic_led.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/basic_led.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/basic_led.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/basic_led.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/basic_led.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/main.c -------------------------------------------------------------------------------- /ST/Code/ch2/Basic-LED/main.c.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Basic-LED/main.c.rtf -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/beep.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/beep.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/beep.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/beep.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/beep.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/beep.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/beep.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/beep.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch2/Beep/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Beep/main.c -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/ex7.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/ex7.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/ex7.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/ex7.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/ex7.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/ex7.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/ex7.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/ex7.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch2/Exercise7/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/Exercise7/main.c -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/main.c -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/rgb_flasher.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/rgb_flasher.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/rgb_flasher.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/rgb_flasher.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/rgb_flasher.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/rgb_flasher.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch2/RGB-Flasher/rgb_flasher.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch2/RGB-Flasher/rgb_flasher.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/flasher1.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/flasher1.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/flasher1.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/flasher1.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/flasher1.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/flasher1.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/flasher1.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/flasher1.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher1/main.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/flasher2.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/flasher2.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/flasher2.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/flasher2.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/flasher2.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/flasher2.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/flasher2.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/flasher2.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher2/main.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/FlasherSpaghetti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/FlasherSpaghetti.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/flasher3.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/flasher3.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/flasher3.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/flasher3.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/flasher3.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/flasher3.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/flasher3.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/flasher3.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher3/main.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/flasher4.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/flasher4.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/flasher4.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/flasher4.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/flasher4.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/flasher4.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/flasher4.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/flasher4.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher4/main.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/flasher5.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/flasher5.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/flasher5.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/flasher5.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/flasher5.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/flasher5.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/flasher5.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/flasher5.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch3/Flasher5/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch3/Flasher5/main.c -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/initialize_interrupt_hal.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt-HAL/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt-HAL/main.c -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/initialize_interrupt.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch4/Initialize-interrupt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch4/Initialize-interrupt/main.c -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/BasicUI.uvgui.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/BasicUI.uvgui.Alex -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/BasicUI.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/BasicUI.uvopt -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/BasicUI.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/BasicUI.uvproj -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/lst/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/lst/data.txt -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/lst/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/lst/main.txt -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/lst/system_mkl25z4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/lst/system_mkl25z4_1.txt -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/obj/BasicUI.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/obj/BasicUI.build_log.htm -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/obj/BasicUI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/obj/BasicUI.htm -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/src/data.c -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/src/main.c -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/src/startup_MKL25Z4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/src/startup_MKL25Z4.s -------------------------------------------------------------------------------- /ST/Code/ch5/CinAsmDemo/src/system_MKL25Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch5/CinAsmDemo/src/system_MKL25Z4.c -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/adc_ir.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/adc_ir.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/adc_ir.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/adc_ir.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/adc_ir.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/adc_ir.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/adc_ir.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/adc_ir.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-IR-Example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-IR-Example/main.c -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/adc_temperature.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch6/ADC-Temperature-Example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/ADC-Temperature-Example/main.c -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/comparator.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/comparator.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/comparator.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/comparator.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/comparator.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/comparator.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/comparator.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/comparator.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch6/Comparator-Example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Comparator-Example/main.c -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/dac.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/dac.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/dac.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/dac.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/dac.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/dac.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/dac.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/dac.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch6/DAC-Example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/DAC-Example/main.c -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/ex8.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/ex8.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/ex8.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/ex8.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/ex8.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/ex8.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/ex8.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/ex8.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch6/Exercise8/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch6/Exercise8/main.c -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/basic_timer.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/basic_timer.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/basic_timer.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/basic_timer.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/basic_timer.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/basic_timer.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/basic_timer.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/basic_timer.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/basic_timer.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/basic_timer.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch7/Basic-Timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Basic-Timer/main.c -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/input_capture_timer.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch7/Input-Capture-Timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Input-Capture-Timer/main.c -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/main.c -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/pwm.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/pwm.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/pwm.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/pwm.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/pwm.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/pwm.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/pwm.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/pwm.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch7/PWM/pwm.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/PWM/pwm.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/main.c -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/systick.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/systick.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/systick.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/systick.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/systick.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/systick.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/systick.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/systick.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch7/SysTick/systick.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/SysTick/systick.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/main.c -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/watchdog.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/watchdog.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/watchdog.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/watchdog.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/watchdog.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/watchdog.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/watchdog.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/watchdog.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch7/Watchdog/watchdog.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch7/Watchdog/watchdog.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/i2c.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/i2c.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/i2c.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/i2c.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/i2c.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/i2c.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/i2c.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/i2c.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/i2c.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/i2c.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch8/I2C/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/I2C/main.c -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/main.c -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/spi.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/spi.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/spi.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/spi.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/spi.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/spi.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/spi.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/spi.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch8/SPI/spi.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/SPI/spi.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/main.c -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART-With-Interrupt/usart-with-irq.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch8/USART/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch8/USART/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch8/USART/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch8/USART/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch8/USART/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch8/USART/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch8/USART/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/main.c -------------------------------------------------------------------------------- /ST/Code/ch8/USART/usart.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/usart.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch8/USART/usart.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/usart.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch8/USART/usart.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/usart.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch8/USART/usart.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/usart.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch8/USART/usart.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch8/USART/usart.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_waveform_generation.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/analog_wavefrom_generation.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch9/Analog-Waveform-Generation/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Analog-Waveform-Generation/main.c -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/DebugConfig/Target_1_STM32F091RCTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/DebugConfig/Target_1_STM32F091RCTx.dbgconf -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/EventRecorderStub.scvd -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/RTE/Device/STM32F091RCTx/startup_stm32f091xc.s -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/RTE/Device/STM32F091RCTx/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/RTE/Device/STM32F091RCTx/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/RTE/Device/STM32F091RCTx/system_stm32f0xx.c -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvguix.Alex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvguix.Alex -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvguix.elipig01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvguix.elipig01 -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvguix.fratan01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvguix.fratan01 -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvoptx -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/data_bulk_transfer.uvprojx -------------------------------------------------------------------------------- /ST/Code/ch9/Data-Bulk-Transfer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/ch9/Data-Bulk-Transfer/main.c -------------------------------------------------------------------------------- /ST/Code/common-driver/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/clock.c -------------------------------------------------------------------------------- /ST/Code/common-driver/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/clock.h -------------------------------------------------------------------------------- /ST/Code/common-driver/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/dac.c -------------------------------------------------------------------------------- /ST/Code/common-driver/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/dac.h -------------------------------------------------------------------------------- /ST/Code/common-driver/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/delay.c -------------------------------------------------------------------------------- /ST/Code/common-driver/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/delay.h -------------------------------------------------------------------------------- /ST/Code/common-driver/field_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/field_access.h -------------------------------------------------------------------------------- /ST/Code/common-driver/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/gpio.h -------------------------------------------------------------------------------- /ST/Code/common-driver/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/i2c.c -------------------------------------------------------------------------------- /ST/Code/common-driver/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/i2c.h -------------------------------------------------------------------------------- /ST/Code/common-driver/inertial_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/inertial_sensor.c -------------------------------------------------------------------------------- /ST/Code/common-driver/inertial_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/inertial_sensor.h -------------------------------------------------------------------------------- /ST/Code/common-driver/lsm6dso_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/lsm6dso_reg.c -------------------------------------------------------------------------------- /ST/Code/common-driver/lsm6dso_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/lsm6dso_reg.h -------------------------------------------------------------------------------- /ST/Code/common-driver/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/queue.c -------------------------------------------------------------------------------- /ST/Code/common-driver/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/queue.h -------------------------------------------------------------------------------- /ST/Code/common-driver/rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/rgb.c -------------------------------------------------------------------------------- /ST/Code/common-driver/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/rgb.h -------------------------------------------------------------------------------- /ST/Code/common-driver/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/switch.c -------------------------------------------------------------------------------- /ST/Code/common-driver/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-g-dean/ESF/HEAD/ST/Code/common-driver/switch.h --------------------------------------------------------------------------------