├── .gitignore
├── Libraries
├── CMSIS
│ ├── CM3
│ │ ├── CoreSupport
│ │ │ ├── core_cm3.c
│ │ │ └── core_cm3.h
│ │ └── DeviceSupport
│ │ │ └── ST
│ │ │ ├── Release_Notes_for_STM32F10x_CMSIS.html
│ │ │ └── STM32F10x
│ │ │ ├── startup
│ │ │ ├── TrueSTUDIO
│ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ ├── arm
│ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ ├── gcc_ride7
│ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ └── iar
│ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ ├── stm32f10x.h
│ │ │ ├── system_stm32f10x.c
│ │ │ └── system_stm32f10x.h
│ ├── CMSIS debug support.htm
│ ├── CMSIS_changes.htm
│ ├── Documentation
│ │ └── CMSIS_Core.htm
│ └── License.doc
└── STM32F10x_StdPeriph_Driver
│ ├── Release_Notes_for_STM32F10x_StdPeriph_Driver.html
│ ├── inc
│ ├── misc.h
│ ├── stm32f10x_adc.h
│ ├── stm32f10x_bkp.h
│ ├── stm32f10x_can.h
│ ├── stm32f10x_cec.h
│ ├── stm32f10x_crc.h
│ ├── stm32f10x_dac.h
│ ├── stm32f10x_dbgmcu.h
│ ├── stm32f10x_dma.h
│ ├── stm32f10x_exti.h
│ ├── stm32f10x_flash.h
│ ├── stm32f10x_fsmc.h
│ ├── stm32f10x_gpio.h
│ ├── stm32f10x_i2c.h
│ ├── stm32f10x_iwdg.h
│ ├── stm32f10x_pwr.h
│ ├── stm32f10x_rcc.h
│ ├── stm32f10x_rtc.h
│ ├── stm32f10x_sdio.h
│ ├── stm32f10x_spi.h
│ ├── stm32f10x_tim.h
│ ├── stm32f10x_usart.h
│ └── stm32f10x_wwdg.h
│ └── src
│ ├── misc.c
│ ├── stm32f10x_adc.c
│ ├── stm32f10x_bkp.c
│ ├── stm32f10x_can.c
│ ├── stm32f10x_cec.c
│ ├── stm32f10x_crc.c
│ ├── stm32f10x_dac.c
│ ├── stm32f10x_dbgmcu.c
│ ├── stm32f10x_dma.c
│ ├── stm32f10x_exti.c
│ ├── stm32f10x_flash.c
│ ├── stm32f10x_fsmc.c
│ ├── stm32f10x_gpio.c
│ ├── stm32f10x_i2c.c
│ ├── stm32f10x_iwdg.c
│ ├── stm32f10x_pwr.c
│ ├── stm32f10x_rcc.c
│ ├── stm32f10x_rtc.c
│ ├── stm32f10x_sdio.c
│ ├── stm32f10x_spi.c
│ ├── stm32f10x_tim.c
│ ├── stm32f10x_usart.c
│ └── stm32f10x_wwdg.c
├── Project
├── Examples
│ ├── GPIOToggle
│ │ ├── EWARMv5
│ │ │ ├── GPIOToggle.ewd
│ │ │ ├── GPIOToggle.ewp
│ │ │ ├── GPIOToggle.eww
│ │ │ └── stm32f10x_flash.icf
│ │ ├── FreeRTOSConfig.h
│ │ ├── MDK-ARM
│ │ │ ├── Debug
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── GPIOToggle.axf
│ │ │ │ ├── GPIOToggle.build_log.htm
│ │ │ │ ├── GPIOToggle.htm
│ │ │ │ ├── GPIOToggle.lnp
│ │ │ │ ├── GPIOToggle.map
│ │ │ │ ├── GPIOToggle.sct
│ │ │ │ ├── core_cm3.crf
│ │ │ │ ├── core_cm3.d
│ │ │ │ ├── debug.crf
│ │ │ │ ├── debug.d
│ │ │ │ ├── main.crf
│ │ │ │ ├── main.d
│ │ │ │ ├── misc.crf
│ │ │ │ ├── misc.d
│ │ │ │ ├── nrf24l01.crf
│ │ │ │ ├── nrf24l01.d
│ │ │ │ ├── realtimer.crf
│ │ │ │ ├── realtimer.d
│ │ │ │ ├── spi.crf
│ │ │ │ ├── spi.d
│ │ │ │ ├── startup_stm32f10x_md_vl.d
│ │ │ │ ├── startup_stm32f10x_md_vl.lst
│ │ │ │ ├── stm32f10x_adc.crf
│ │ │ │ ├── stm32f10x_adc.d
│ │ │ │ ├── stm32f10x_bkp.crf
│ │ │ │ ├── stm32f10x_bkp.d
│ │ │ │ ├── stm32f10x_can.crf
│ │ │ │ ├── stm32f10x_can.d
│ │ │ │ ├── stm32f10x_cec.crf
│ │ │ │ ├── stm32f10x_cec.d
│ │ │ │ ├── stm32f10x_crc.crf
│ │ │ │ ├── stm32f10x_crc.d
│ │ │ │ ├── stm32f10x_dac.crf
│ │ │ │ ├── stm32f10x_dac.d
│ │ │ │ ├── stm32f10x_dbgmcu.crf
│ │ │ │ ├── stm32f10x_dbgmcu.d
│ │ │ │ ├── stm32f10x_dma.crf
│ │ │ │ ├── stm32f10x_dma.d
│ │ │ │ ├── stm32f10x_exti.crf
│ │ │ │ ├── stm32f10x_exti.d
│ │ │ │ ├── stm32f10x_flash.crf
│ │ │ │ ├── stm32f10x_flash.d
│ │ │ │ ├── stm32f10x_fsmc.crf
│ │ │ │ ├── stm32f10x_fsmc.d
│ │ │ │ ├── stm32f10x_gpio.crf
│ │ │ │ ├── stm32f10x_gpio.d
│ │ │ │ ├── stm32f10x_i2c.crf
│ │ │ │ ├── stm32f10x_i2c.d
│ │ │ │ ├── stm32f10x_it.crf
│ │ │ │ ├── stm32f10x_it.d
│ │ │ │ ├── stm32f10x_iwdg.crf
│ │ │ │ ├── stm32f10x_iwdg.d
│ │ │ │ ├── stm32f10x_pwr.crf
│ │ │ │ ├── stm32f10x_pwr.d
│ │ │ │ ├── stm32f10x_rcc.crf
│ │ │ │ ├── stm32f10x_rcc.d
│ │ │ │ ├── stm32f10x_rtc.crf
│ │ │ │ ├── stm32f10x_rtc.d
│ │ │ │ ├── stm32f10x_sdio.crf
│ │ │ │ ├── stm32f10x_sdio.d
│ │ │ │ ├── stm32f10x_spi.crf
│ │ │ │ ├── stm32f10x_spi.d
│ │ │ │ ├── stm32f10x_tim.crf
│ │ │ │ ├── stm32f10x_tim.d
│ │ │ │ ├── stm32f10x_usart.crf
│ │ │ │ ├── stm32f10x_usart.d
│ │ │ │ ├── stm32f10x_wwdg.crf
│ │ │ │ ├── stm32f10x_wwdg.d
│ │ │ │ ├── stm32vldiscovery.crf
│ │ │ │ ├── stm32vldiscovery.d
│ │ │ │ ├── system_stm32f10x.crf
│ │ │ │ ├── system_stm32f10x.d
│ │ │ │ ├── uart.crf
│ │ │ │ └── uart.d
│ │ │ ├── GPIOToggle.uvgui.phuc
│ │ │ ├── GPIOToggle.uvgui_phuc.bak
│ │ │ ├── GPIOToggle.uvopt
│ │ │ ├── GPIOToggle.uvproj
│ │ │ ├── GPIOToggle_GPIOToggle.dep
│ │ │ ├── GPIOToggle_uvopt.bak
│ │ │ └── GPIOToggle_uvproj.bak
│ │ ├── SPI.c
│ │ ├── SPI.h
│ │ ├── TrueSTUDIO
│ │ │ ├── GPIOToggle_Project
│ │ │ │ ├── .cproject
│ │ │ │ ├── .project
│ │ │ │ └── .settings
│ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs
│ │ │ └── stm32_flash.ld
│ │ ├── UART.c
│ │ ├── UART.h
│ │ ├── debug.c
│ │ ├── debug.h
│ │ ├── define.h
│ │ ├── main.c
│ │ ├── nrf24l01.c
│ │ ├── nrf24l01.h
│ │ ├── readme.txt
│ │ ├── realtimer.c
│ │ ├── realtimer.h
│ │ ├── source_insight
│ │ │ ├── stm32_nrf.IAB
│ │ │ ├── stm32_nrf.IAD
│ │ │ ├── stm32_nrf.IMB
│ │ │ ├── stm32_nrf.IMD
│ │ │ ├── stm32_nrf.PFI
│ │ │ ├── stm32_nrf.PO
│ │ │ ├── stm32_nrf.PR
│ │ │ ├── stm32_nrf.PRI
│ │ │ └── stm32_nrf.PS
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ ├── stm32f10x_it.h
│ │ └── system_stm32f10x.c
│ └── test
│ │ ├── EWARMv5
│ │ ├── GPIOToggle.ewd
│ │ ├── GPIOToggle.ewp
│ │ ├── GPIOToggle.eww
│ │ └── stm32f10x_flash.icf
│ │ ├── FreeRTOSConfig.h
│ │ ├── MDK-ARM
│ │ ├── Debug
│ │ │ ├── ExtDll.iex
│ │ │ ├── GPIOToggle.build_log.htm
│ │ │ ├── GPIOToggle.htm
│ │ │ ├── GPIOToggle.lnp
│ │ │ ├── GPIOToggle.map
│ │ │ ├── GPIOToggle.sct
│ │ │ ├── core_cm3.crf
│ │ │ ├── core_cm3.d
│ │ │ ├── debug.crf
│ │ │ ├── debug.d
│ │ │ ├── main.crf
│ │ │ ├── main.d
│ │ │ ├── misc.crf
│ │ │ ├── misc.d
│ │ │ ├── nrf24l01.crf
│ │ │ ├── nrf24l01.d
│ │ │ ├── realtimer.crf
│ │ │ ├── realtimer.d
│ │ │ ├── spi.crf
│ │ │ ├── spi.d
│ │ │ ├── startup_stm32f10x_md_vl.d
│ │ │ ├── startup_stm32f10x_md_vl.lst
│ │ │ ├── stm32f10x_adc.crf
│ │ │ ├── stm32f10x_adc.d
│ │ │ ├── stm32f10x_bkp.crf
│ │ │ ├── stm32f10x_bkp.d
│ │ │ ├── stm32f10x_can.crf
│ │ │ ├── stm32f10x_can.d
│ │ │ ├── stm32f10x_cec.crf
│ │ │ ├── stm32f10x_cec.d
│ │ │ ├── stm32f10x_crc.crf
│ │ │ ├── stm32f10x_crc.d
│ │ │ ├── stm32f10x_dac.crf
│ │ │ ├── stm32f10x_dac.d
│ │ │ ├── stm32f10x_dbgmcu.crf
│ │ │ ├── stm32f10x_dbgmcu.d
│ │ │ ├── stm32f10x_dma.crf
│ │ │ ├── stm32f10x_dma.d
│ │ │ ├── stm32f10x_exti.crf
│ │ │ ├── stm32f10x_exti.d
│ │ │ ├── stm32f10x_flash.crf
│ │ │ ├── stm32f10x_flash.d
│ │ │ ├── stm32f10x_fsmc.crf
│ │ │ ├── stm32f10x_fsmc.d
│ │ │ ├── stm32f10x_gpio.crf
│ │ │ ├── stm32f10x_gpio.d
│ │ │ ├── stm32f10x_i2c.crf
│ │ │ ├── stm32f10x_i2c.d
│ │ │ ├── stm32f10x_it.crf
│ │ │ ├── stm32f10x_it.d
│ │ │ ├── stm32f10x_iwdg.crf
│ │ │ ├── stm32f10x_iwdg.d
│ │ │ ├── stm32f10x_pwr.crf
│ │ │ ├── stm32f10x_pwr.d
│ │ │ ├── stm32f10x_rcc.crf
│ │ │ ├── stm32f10x_rcc.d
│ │ │ ├── stm32f10x_rtc.crf
│ │ │ ├── stm32f10x_rtc.d
│ │ │ ├── stm32f10x_sdio.crf
│ │ │ ├── stm32f10x_sdio.d
│ │ │ ├── stm32f10x_spi.crf
│ │ │ ├── stm32f10x_spi.d
│ │ │ ├── stm32f10x_tim.crf
│ │ │ ├── stm32f10x_tim.d
│ │ │ ├── stm32f10x_usart.crf
│ │ │ ├── stm32f10x_usart.d
│ │ │ ├── stm32f10x_wwdg.crf
│ │ │ ├── stm32f10x_wwdg.d
│ │ │ ├── stm32vldiscovery.crf
│ │ │ ├── stm32vldiscovery.d
│ │ │ ├── system_stm32f10x.crf
│ │ │ ├── system_stm32f10x.d
│ │ │ ├── uart.crf
│ │ │ └── uart.d
│ │ ├── GPIOToggle.uvgui.phuc
│ │ ├── GPIOToggle.uvgui_phuc.bak
│ │ ├── GPIOToggle.uvopt
│ │ ├── GPIOToggle.uvproj
│ │ ├── GPIOToggle_GPIOToggle.dep
│ │ ├── GPIOToggle_uvopt.bak
│ │ └── GPIOToggle_uvproj.bak
│ │ ├── SPI.c
│ │ ├── SPI.h
│ │ ├── TrueSTUDIO
│ │ ├── GPIOToggle_Project
│ │ │ ├── .cproject
│ │ │ ├── .project
│ │ │ └── .settings
│ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs
│ │ └── stm32_flash.ld
│ │ ├── UART.c
│ │ ├── UART.h
│ │ ├── debug.c
│ │ ├── debug.h
│ │ ├── define.h
│ │ ├── main.c
│ │ ├── nrf24l01.c
│ │ ├── nrf24l01.h
│ │ ├── readme.txt
│ │ ├── realtimer.c
│ │ ├── realtimer.h
│ │ ├── source_insight
│ │ ├── stm32_nrf.IAB
│ │ ├── stm32_nrf.IAD
│ │ ├── stm32_nrf.IMB
│ │ ├── stm32_nrf.IMD
│ │ ├── stm32_nrf.PFI
│ │ ├── stm32_nrf.PO
│ │ ├── stm32_nrf.PR
│ │ ├── stm32_nrf.PRI
│ │ └── stm32_nrf.PS
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ ├── stm32f10x_it.h
│ │ └── system_stm32f10x.c
└── SPI_RF_Master
│ ├── MDK-ARM
│ ├── SPI_RF_Master.uvgui.Pham Giang
│ ├── SPI_RF_Master.uvgui.phuc
│ ├── SPI_RF_Master.uvgui_Pham Giang.bak
│ ├── SPI_RF_Master.uvgui_phuc.bak
│ ├── SPI_RF_Master.uvopt
│ ├── SPI_RF_Master.uvproj
│ ├── SPI_RF_Master_IO_TOGGLE.dep
│ ├── SPI_RF_Master_SPI_RF_Master.dep
│ ├── SPI_RF_Master_uvopt.bak
│ ├── SPI_RF_Master_uvproj.bak
│ ├── lst
│ │ ├── SPI_RF_Master.map
│ │ └── startup_stm32f4xx.lst
│ ├── obj
│ │ ├── SPI_RF_Master.build_log.htm
│ │ ├── SPI_RF_Master.htm
│ │ ├── SPI_RF_Master.lnp
│ │ ├── SPI_RF_Master.plg
│ │ ├── SPI_RF_Master.sct
│ │ ├── SPI_RF_Master.tra
│ │ ├── SPI_RF_Master_sct.Bak
│ │ ├── main.crf
│ │ ├── main.d
│ │ ├── misc.crf
│ │ ├── misc.d
│ │ ├── nrf24l01p.crf
│ │ ├── nrf24l01p.d
│ │ ├── startup_stm32f4xx.d
│ │ ├── stm32f10x_adc.d
│ │ ├── stm32f10x_bkp.d
│ │ ├── stm32f10x_can.d
│ │ ├── stm32f10x_cec.d
│ │ ├── stm32f10x_crc.d
│ │ ├── stm32f10x_dac.d
│ │ ├── stm32f10x_dbgmcu.d
│ │ ├── stm32f10x_dma.d
│ │ ├── stm32f10x_exti.d
│ │ ├── stm32f10x_flash.d
│ │ ├── stm32f10x_fsmc.d
│ │ ├── stm32f10x_gpio.d
│ │ ├── stm32f10x_i2c.d
│ │ ├── stm32f10x_it.d
│ │ ├── stm32f10x_iwdg.d
│ │ ├── stm32f10x_pwr.d
│ │ ├── stm32f10x_rcc.d
│ │ ├── stm32f10x_rtc.d
│ │ ├── stm32f10x_sdio.d
│ │ ├── stm32f10x_spi.d
│ │ ├── stm32f10x_tim.d
│ │ ├── stm32f10x_usart.d
│ │ ├── stm32f10x_wwdg.d
│ │ ├── stm32f4xx_gpio.crf
│ │ ├── stm32f4xx_gpio.d
│ │ ├── stm32f4xx_it.crf
│ │ ├── stm32f4xx_it.d
│ │ ├── stm32f4xx_rcc.crf
│ │ ├── stm32f4xx_rcc.d
│ │ ├── stm32f4xx_spi.crf
│ │ ├── stm32f4xx_spi.d
│ │ ├── stm32f4xx_syscfg.crf
│ │ ├── stm32f4xx_syscfg.d
│ │ ├── stm32f4xx_usart.crf
│ │ ├── stm32f4xx_usart.d
│ │ ├── system_stm32f10x.d
│ │ ├── system_stm32f4xx.crf
│ │ └── system_stm32f4xx.d
│ └── startup_stm32f4xx.s
│ ├── main.c
│ ├── main.h
│ ├── nRF24l01
│ ├── nRF24L01P.c
│ └── nRF24L01P.h
│ ├── readme.txt
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ ├── stm32f10x_it.h
│ ├── stm32f4xx_conf.h
│ ├── stm32f4xx_it.c
│ ├── stm32f4xx_it.h
│ ├── system_stm32f10x.c
│ └── system_stm32f4xx.c
├── README.md
├── Release_Notes.html
├── Utilities
├── STM32vldiscovery.c
└── STM32vldiscovery.h
├── _htmresc
├── CMSIS_Logo_Final.jpg
├── Thumbs.db
└── logo.bmp
└── stm32f10x_an3268_fw.chm
/.gitignore:
--------------------------------------------------------------------------------
1 | # Object files
2 | *.o
3 | *.ko
4 | *.obj
5 | *.elf
6 |
7 | # Libraries
8 | *.lib
9 | *.a
10 |
11 | # Shared objects (inc. Windows DLLs)
12 | *.dll
13 | *.so
14 | *.so.*
15 | *.dylib
16 |
17 | # Executables
18 | *.exe
19 | *.out
20 | *.app
21 | *.i*86
22 | *.x86_64
23 | *.hex
24 |
--------------------------------------------------------------------------------
/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file system_stm32f10x.h
4 | * @author MCD Application Team
5 | * @version V3.3.0
6 | * @date 04/16/2010
7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
8 | ******************************************************************************
9 | *
10 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
11 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
12 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
13 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
14 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
15 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
16 | *
17 | *
© COPYRIGHT 2010 STMicroelectronics
18 | ******************************************************************************
19 | */
20 |
21 | /** @addtogroup CMSIS
22 | * @{
23 | */
24 |
25 | /** @addtogroup stm32f10x_system
26 | * @{
27 | */
28 |
29 | /**
30 | * @brief Define to prevent recursive inclusion
31 | */
32 | #ifndef __SYSTEM_STM32F10X_H
33 | #define __SYSTEM_STM32F10X_H
34 |
35 | #ifdef __cplusplus
36 | extern "C" {
37 | #endif
38 |
39 | /** @addtogroup STM32F10x_System_Includes
40 | * @{
41 | */
42 |
43 | /**
44 | * @}
45 | */
46 |
47 |
48 | /** @addtogroup STM32F10x_System_Exported_types
49 | * @{
50 | */
51 |
52 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
53 |
54 | /**
55 | * @}
56 | */
57 |
58 | /** @addtogroup STM32F10x_System_Exported_Constants
59 | * @{
60 | */
61 |
62 | /**
63 | * @}
64 | */
65 |
66 | /** @addtogroup STM32F10x_System_Exported_Macros
67 | * @{
68 | */
69 |
70 | /**
71 | * @}
72 | */
73 |
74 | /** @addtogroup STM32F10x_System_Exported_Functions
75 | * @{
76 | */
77 |
78 | extern void SystemInit(void);
79 | extern void SystemCoreClockUpdate(void);
80 | /**
81 | * @}
82 | */
83 |
84 | #ifdef __cplusplus
85 | }
86 | #endif
87 |
88 | #endif /*__SYSTEM_STM32F10X_H */
89 |
90 | /**
91 | * @}
92 | */
93 |
94 | /**
95 | * @}
96 | */
97 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
98 |
--------------------------------------------------------------------------------
/Libraries/CMSIS/CMSIS debug support.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/CMSIS/CMSIS debug support.htm
--------------------------------------------------------------------------------
/Libraries/CMSIS/Documentation/CMSIS_Core.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/CMSIS/Documentation/CMSIS_Core.htm
--------------------------------------------------------------------------------
/Libraries/CMSIS/License.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/CMSIS/License.doc
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f10x_crc.h
4 | * @author MCD Application Team
5 | * @version V3.3.0
6 | * @date 04/16/2010
7 | * @brief This file contains all the functions prototypes for the CRC firmware
8 | * library.
9 | ******************************************************************************
10 | * @copy
11 | *
12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 | *
19 | * © COPYRIGHT 2010 STMicroelectronics
20 | */
21 |
22 | /* Define to prevent recursive inclusion -------------------------------------*/
23 | #ifndef __STM32F10x_CRC_H
24 | #define __STM32F10x_CRC_H
25 |
26 | #ifdef __cplusplus
27 | extern "C" {
28 | #endif
29 |
30 | /* Includes ------------------------------------------------------------------*/
31 | #include "stm32f10x.h"
32 |
33 | /** @addtogroup STM32F10x_StdPeriph_Driver
34 | * @{
35 | */
36 |
37 | /** @addtogroup CRC
38 | * @{
39 | */
40 |
41 | /** @defgroup CRC_Exported_Types
42 | * @{
43 | */
44 |
45 | /**
46 | * @}
47 | */
48 |
49 | /** @defgroup CRC_Exported_Constants
50 | * @{
51 | */
52 |
53 | /**
54 | * @}
55 | */
56 |
57 | /** @defgroup CRC_Exported_Macros
58 | * @{
59 | */
60 |
61 | /**
62 | * @}
63 | */
64 |
65 | /** @defgroup CRC_Exported_Functions
66 | * @{
67 | */
68 |
69 | void CRC_ResetDR(void);
70 | uint32_t CRC_CalcCRC(uint32_t Data);
71 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength);
72 | uint32_t CRC_GetCRC(void);
73 | void CRC_SetIDRegister(uint8_t IDValue);
74 | uint8_t CRC_GetIDRegister(void);
75 |
76 | #ifdef __cplusplus
77 | }
78 | #endif
79 |
80 | #endif /* __STM32F10x_CRC_H */
81 | /**
82 | * @}
83 | */
84 |
85 | /**
86 | * @}
87 | */
88 |
89 | /**
90 | * @}
91 | */
92 |
93 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
94 |
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f10x_dbgmcu.h
4 | * @author MCD Application Team
5 | * @version V3.3.0
6 | * @date 04/16/2010
7 | * @brief This file contains all the functions prototypes for the DBGMCU
8 | * firmware library.
9 | ******************************************************************************
10 | * @copy
11 | *
12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 | *
19 | * © COPYRIGHT 2010 STMicroelectronics
20 | */
21 |
22 | /* Define to prevent recursive inclusion -------------------------------------*/
23 | #ifndef __STM32F10x_DBGMCU_H
24 | #define __STM32F10x_DBGMCU_H
25 |
26 | #ifdef __cplusplus
27 | extern "C" {
28 | #endif
29 |
30 | /* Includes ------------------------------------------------------------------*/
31 | #include "stm32f10x.h"
32 |
33 | /** @addtogroup STM32F10x_StdPeriph_Driver
34 | * @{
35 | */
36 |
37 | /** @addtogroup DBGMCU
38 | * @{
39 | */
40 |
41 | /** @defgroup DBGMCU_Exported_Types
42 | * @{
43 | */
44 |
45 | /**
46 | * @}
47 | */
48 |
49 | /** @defgroup DBGMCU_Exported_Constants
50 | * @{
51 | */
52 |
53 | #define DBGMCU_SLEEP ((uint32_t)0x00000001)
54 | #define DBGMCU_STOP ((uint32_t)0x00000002)
55 | #define DBGMCU_STANDBY ((uint32_t)0x00000004)
56 | #define DBGMCU_IWDG_STOP ((uint32_t)0x00000100)
57 | #define DBGMCU_WWDG_STOP ((uint32_t)0x00000200)
58 | #define DBGMCU_TIM1_STOP ((uint32_t)0x00000400)
59 | #define DBGMCU_TIM2_STOP ((uint32_t)0x00000800)
60 | #define DBGMCU_TIM3_STOP ((uint32_t)0x00001000)
61 | #define DBGMCU_TIM4_STOP ((uint32_t)0x00002000)
62 | #define DBGMCU_CAN1_STOP ((uint32_t)0x00004000)
63 | #define DBGMCU_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00008000)
64 | #define DBGMCU_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00010000)
65 | #define DBGMCU_TIM8_STOP ((uint32_t)0x00020000)
66 | #define DBGMCU_TIM5_STOP ((uint32_t)0x00040000)
67 | #define DBGMCU_TIM6_STOP ((uint32_t)0x00080000)
68 | #define DBGMCU_TIM7_STOP ((uint32_t)0x00100000)
69 | #define DBGMCU_CAN2_STOP ((uint32_t)0x00200000)
70 | #define DBGMCU_TIM15_STOP ((uint32_t)0x00400000)
71 | #define DBGMCU_TIM16_STOP ((uint32_t)0x00800000)
72 | #define DBGMCU_TIM17_STOP ((uint32_t)0x01000000)
73 | #define DBGMCU_TIM12_STOP ((uint32_t)0x02000000)
74 | #define DBGMCU_TIM13_STOP ((uint32_t)0x04000000)
75 | #define DBGMCU_TIM14_STOP ((uint32_t)0x08000000)
76 | #define DBGMCU_TIM9_STOP ((uint32_t)0x10000000)
77 | #define DBGMCU_TIM10_STOP ((uint32_t)0x20000000)
78 | #define DBGMCU_TIM11_STOP ((uint32_t)0x40000000)
79 |
80 | #define IS_DBGMCU_PERIPH(PERIPH) ((((PERIPH) & 0x800000F8) == 0x00) && ((PERIPH) != 0x00))
81 | /**
82 | * @}
83 | */
84 |
85 | /** @defgroup DBGMCU_Exported_Macros
86 | * @{
87 | */
88 |
89 | /**
90 | * @}
91 | */
92 |
93 | /** @defgroup DBGMCU_Exported_Functions
94 | * @{
95 | */
96 |
97 | uint32_t DBGMCU_GetREVID(void);
98 | uint32_t DBGMCU_GetDEVID(void);
99 | void DBGMCU_Config(uint32_t DBGMCU_Periph, FunctionalState NewState);
100 |
101 | #ifdef __cplusplus
102 | }
103 | #endif
104 |
105 | #endif /* __STM32F10x_DBGMCU_H */
106 | /**
107 | * @}
108 | */
109 |
110 | /**
111 | * @}
112 | */
113 |
114 | /**
115 | * @}
116 | */
117 |
118 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
119 |
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f10x_wwdg.h
4 | * @author MCD Application Team
5 | * @version V3.3.0
6 | * @date 04/16/2010
7 | * @brief This file contains all the functions prototypes for the WWDG firmware
8 | * library.
9 | ******************************************************************************
10 | * @copy
11 | *
12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 | *
19 | * © COPYRIGHT 2010 STMicroelectronics
20 | */
21 |
22 | /* Define to prevent recursive inclusion -------------------------------------*/
23 | #ifndef __STM32F10x_WWDG_H
24 | #define __STM32F10x_WWDG_H
25 |
26 | #ifdef __cplusplus
27 | extern "C" {
28 | #endif
29 |
30 | /* Includes ------------------------------------------------------------------*/
31 | #include "stm32f10x.h"
32 |
33 | /** @addtogroup STM32F10x_StdPeriph_Driver
34 | * @{
35 | */
36 |
37 | /** @addtogroup WWDG
38 | * @{
39 | */
40 |
41 | /** @defgroup WWDG_Exported_Types
42 | * @{
43 | */
44 |
45 | /**
46 | * @}
47 | */
48 |
49 | /** @defgroup WWDG_Exported_Constants
50 | * @{
51 | */
52 |
53 | /** @defgroup WWDG_Prescaler
54 | * @{
55 | */
56 |
57 | #define WWDG_Prescaler_1 ((uint32_t)0x00000000)
58 | #define WWDG_Prescaler_2 ((uint32_t)0x00000080)
59 | #define WWDG_Prescaler_4 ((uint32_t)0x00000100)
60 | #define WWDG_Prescaler_8 ((uint32_t)0x00000180)
61 | #define IS_WWDG_PRESCALER(PRESCALER) (((PRESCALER) == WWDG_Prescaler_1) || \
62 | ((PRESCALER) == WWDG_Prescaler_2) || \
63 | ((PRESCALER) == WWDG_Prescaler_4) || \
64 | ((PRESCALER) == WWDG_Prescaler_8))
65 | #define IS_WWDG_WINDOW_VALUE(VALUE) ((VALUE) <= 0x7F)
66 | #define IS_WWDG_COUNTER(COUNTER) (((COUNTER) >= 0x40) && ((COUNTER) <= 0x7F))
67 |
68 | /**
69 | * @}
70 | */
71 |
72 | /**
73 | * @}
74 | */
75 |
76 | /** @defgroup WWDG_Exported_Macros
77 | * @{
78 | */
79 | /**
80 | * @}
81 | */
82 |
83 | /** @defgroup WWDG_Exported_Functions
84 | * @{
85 | */
86 |
87 | void WWDG_DeInit(void);
88 | void WWDG_SetPrescaler(uint32_t WWDG_Prescaler);
89 | void WWDG_SetWindowValue(uint8_t WindowValue);
90 | void WWDG_EnableIT(void);
91 | void WWDG_SetCounter(uint8_t Counter);
92 | void WWDG_Enable(uint8_t Counter);
93 | FlagStatus WWDG_GetFlagStatus(void);
94 | void WWDG_ClearFlag(void);
95 |
96 | #ifdef __cplusplus
97 | }
98 | #endif
99 |
100 | #endif /* __STM32F10x_WWDG_H */
101 |
102 | /**
103 | * @}
104 | */
105 |
106 | /**
107 | * @}
108 | */
109 |
110 | /**
111 | * @}
112 | */
113 |
114 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
115 |
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f10x_crc.c
4 | * @author MCD Application Team
5 | * @version V3.3.0
6 | * @date 04/16/2010
7 | * @brief This file provides all the CRC firmware functions.
8 | ******************************************************************************
9 | * @copy
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | * © COPYRIGHT 2010 STMicroelectronics
19 | */
20 |
21 | /* Includes ------------------------------------------------------------------*/
22 | #include "stm32f10x_crc.h"
23 |
24 | /** @addtogroup STM32F10x_StdPeriph_Driver
25 | * @{
26 | */
27 |
28 | /** @defgroup CRC
29 | * @brief CRC driver modules
30 | * @{
31 | */
32 |
33 | /** @defgroup CRC_Private_TypesDefinitions
34 | * @{
35 | */
36 |
37 | /**
38 | * @}
39 | */
40 |
41 | /** @defgroup CRC_Private_Defines
42 | * @{
43 | */
44 |
45 | /* CR register bit mask */
46 |
47 | #define CR_RESET_Set ((uint32_t)0x00000001)
48 |
49 | /**
50 | * @}
51 | */
52 |
53 | /** @defgroup CRC_Private_Macros
54 | * @{
55 | */
56 |
57 | /**
58 | * @}
59 | */
60 |
61 | /** @defgroup CRC_Private_Variables
62 | * @{
63 | */
64 |
65 | /**
66 | * @}
67 | */
68 |
69 | /** @defgroup CRC_Private_FunctionPrototypes
70 | * @{
71 | */
72 |
73 | /**
74 | * @}
75 | */
76 |
77 | /** @defgroup CRC_Private_Functions
78 | * @{
79 | */
80 |
81 | /**
82 | * @brief Resets the CRC Data register (DR).
83 | * @param None
84 | * @retval None
85 | */
86 | void CRC_ResetDR(void)
87 | {
88 | /* Reset CRC generator */
89 | CRC->CR = CR_RESET_Set;
90 | }
91 |
92 | /**
93 | * @brief Computes the 32-bit CRC of a given data word(32-bit).
94 | * @param Data: data word(32-bit) to compute its CRC
95 | * @retval 32-bit CRC
96 | */
97 | uint32_t CRC_CalcCRC(uint32_t Data)
98 | {
99 | CRC->DR = Data;
100 |
101 | return (CRC->DR);
102 | }
103 |
104 | /**
105 | * @brief Computes the 32-bit CRC of a given buffer of data word(32-bit).
106 | * @param pBuffer: pointer to the buffer containing the data to be computed
107 | * @param BufferLength: length of the buffer to be computed
108 | * @retval 32-bit CRC
109 | */
110 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength)
111 | {
112 | uint32_t index = 0;
113 |
114 | for(index = 0; index < BufferLength; index++)
115 | {
116 | CRC->DR = pBuffer[index];
117 | }
118 | return (CRC->DR);
119 | }
120 |
121 | /**
122 | * @brief Returns the current CRC value.
123 | * @param None
124 | * @retval 32-bit CRC
125 | */
126 | uint32_t CRC_GetCRC(void)
127 | {
128 | return (CRC->DR);
129 | }
130 |
131 | /**
132 | * @brief Stores a 8-bit data in the Independent Data(ID) register.
133 | * @param IDValue: 8-bit value to be stored in the ID register
134 | * @retval None
135 | */
136 | void CRC_SetIDRegister(uint8_t IDValue)
137 | {
138 | CRC->IDR = IDValue;
139 | }
140 |
141 | /**
142 | * @brief Returns the 8-bit data stored in the Independent Data(ID) register
143 | * @param None
144 | * @retval 8-bit value of the ID register
145 | */
146 | uint8_t CRC_GetIDRegister(void)
147 | {
148 | return (CRC->IDR);
149 | }
150 |
151 | /**
152 | * @}
153 | */
154 |
155 | /**
156 | * @}
157 | */
158 |
159 | /**
160 | * @}
161 | */
162 |
163 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
164 |
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c
--------------------------------------------------------------------------------
/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/EWARMv5/GPIOToggle.eww:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | $WS_DIR$\GPIOToggle.ewp
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/EWARMv5/stm32f10x_flash.icf:
--------------------------------------------------------------------------------
1 | /*###ICF### Section handled by ICF editor, don't touch! ****/
2 | /*-Editor annotation file-*/
3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
4 | /*-Specials-*/
5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000;
6 | /*-Memory Regions-*/
7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000;
8 | define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF;
9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000;
10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF;
11 | /*-Sizes-*/
12 | define symbol __ICFEDIT_size_cstack__ = 0x400;
13 | define symbol __ICFEDIT_size_heap__ = 0x200;
14 | /**** End of ICF editor section. ###ICF###*/
15 |
16 |
17 | define memory mem with size = 4G;
18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
20 |
21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
23 |
24 | initialize by copy { readwrite };
25 | do not initialize { section .noinit };
26 |
27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
28 |
29 | place in ROM_region { readonly };
30 | place in RAM_region { readwrite,
31 | block CSTACK, block HEAP };
32 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/ExtDll.iex:
--------------------------------------------------------------------------------
1 | [EXTDLL]
2 | Count=0
3 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/GPIOToggle.axf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/GPIOToggle.axf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/GPIOToggle.build_log.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/GPIOToggle.build_log.htm
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/GPIOToggle.lnp:
--------------------------------------------------------------------------------
1 | --cpu Cortex-M3
2 | ".\debug\misc.o"
3 | ".\debug\stm32f10x_exti.o"
4 | ".\debug\stm32f10x_gpio.o"
5 | ".\debug\stm32f10x_rcc.o"
6 | ".\debug\stm32f10x_spi.o"
7 | ".\debug\stm32f10x_usart.o"
8 | ".\debug\system_stm32f10x.o"
9 | ".\debug\core_cm3.o"
10 | ".\debug\startup_stm32f10x_md_vl.o"
11 | ".\debug\main.o"
12 | ".\debug\stm32f10x_it.o"
13 | ".\debug\nrf24l01.o"
14 | ".\debug\spi.o"
15 | ".\debug\uart.o"
16 | ".\debug\stm32vldiscovery.o"
17 | --library_type=microlib --strict --scatter ".\Debug\GPIOToggle.sct"
18 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols
19 | --info sizes --info totals --info unused --info veneers
20 | --list ".\Debug\GPIOToggle.map" -o .\Debug\GPIOToggle.axf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/GPIOToggle.sct:
--------------------------------------------------------------------------------
1 | ; *************************************************************
2 | ; *** Scatter-Loading Description File generated by uVision ***
3 | ; *************************************************************
4 |
5 | LR_IROM1 0x08000000 0x00020000 { ; load region size_region
6 | ER_IROM1 0x08000000 0x00020000 { ; load address = execution address
7 | *.o (RESET, +First)
8 | *(InRoot$$Sections)
9 | .ANY (+RO)
10 | }
11 | RW_IRAM1 0x20000000 0x00002000 { ; RW data
12 | .ANY (+RW +ZI)
13 | }
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/core_cm3.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/core_cm3.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/core_cm3.d:
--------------------------------------------------------------------------------
1 | .\debug\core_cm3.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.c
2 | .\debug\core_cm3.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
3 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/debug.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/debug.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/debug.d:
--------------------------------------------------------------------------------
1 | .\debug\debug.o: ..\debug.c
2 | .\debug\debug.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
3 | .\debug\debug.o: ..\debug.h
4 | .\debug\debug.o: ..\define.h
5 | .\debug\debug.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
6 | .\debug\debug.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
7 | .\debug\debug.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
8 | .\debug\debug.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
9 | .\debug\debug.o: ..\stm32f10x_conf.h
10 | .\debug\debug.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
11 | .\debug\debug.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
12 | .\debug\debug.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
13 | .\debug\debug.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
14 | .\debug\debug.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
15 | .\debug\debug.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
16 | .\debug\debug.o: ..\..\..\..\Utilities\STM32vldiscovery.h
17 | .\debug\debug.o: ..\debug.h
18 | .\debug\debug.o: ..\realtimer.h
19 | .\debug\debug.o: ..\define.h
20 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/main.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/main.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/main.d:
--------------------------------------------------------------------------------
1 | .\debug\main.o: ..\main.c
2 | .\debug\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
3 | .\debug\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
4 | .\debug\main.o: ..\nrf24l01.h
5 | .\debug\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stddef.h
6 | .\debug\main.o: ..\SPI.h
7 | .\debug\main.o: ..\UART.h
8 | .\debug\main.o: ..\..\..\..\Utilities\STM32vldiscovery.h
9 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\STM32f10x.h
10 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
11 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
12 | .\debug\main.o: ..\stm32f10x_conf.h
13 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
14 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
15 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
16 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
17 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
18 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
19 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/misc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/misc.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/misc.d:
--------------------------------------------------------------------------------
1 | .\debug\misc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c
2 | .\debug\misc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
3 | .\debug\misc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\misc.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\misc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\misc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\misc.o: ..\stm32f10x_conf.h
8 | .\debug\misc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\misc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\misc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\misc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\misc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\misc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/nrf24l01.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/nrf24l01.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/nrf24l01.d:
--------------------------------------------------------------------------------
1 | .\debug\nrf24l01.o: ..\nrf24l01.c
2 | .\debug\nrf24l01.o: ..\nrf24l01.h
3 | .\debug\nrf24l01.o: C:\Keil\ARM\ARMCC\bin\..\include\stddef.h
4 | .\debug\nrf24l01.o: ..\SPI.h
5 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
6 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
7 | .\debug\nrf24l01.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
8 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
9 | .\debug\nrf24l01.o: ..\stm32f10x_conf.h
10 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
11 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
12 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
13 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
14 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
15 | .\debug\nrf24l01.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
16 | .\debug\nrf24l01.o: ..\UART.h
17 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/realtimer.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/realtimer.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/realtimer.d:
--------------------------------------------------------------------------------
1 | .\debug\realtimer.o: ..\realtimer.c
2 | .\debug\realtimer.o: ..\realtimer.h
3 | .\debug\realtimer.o: ..\define.h
4 | .\debug\realtimer.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
5 | .\debug\realtimer.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
6 | .\debug\realtimer.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
7 | .\debug\realtimer.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
8 | .\debug\realtimer.o: ..\stm32f10x_conf.h
9 | .\debug\realtimer.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
10 | .\debug\realtimer.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
11 | .\debug\realtimer.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
12 | .\debug\realtimer.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
13 | .\debug\realtimer.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
14 | .\debug\realtimer.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
15 | .\debug\realtimer.o: ..\..\..\..\Utilities\STM32vldiscovery.h
16 | .\debug\realtimer.o: ..\debug.h
17 | .\debug\realtimer.o: ..\define.h
18 | .\debug\realtimer.o: ..\realtimer.h
19 | .\debug\realtimer.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
20 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/spi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/spi.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/spi.d:
--------------------------------------------------------------------------------
1 | .\debug\spi.o: ..\SPI.c
2 | .\debug\spi.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
3 | .\debug\spi.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
4 | .\debug\spi.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
5 | .\debug\spi.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
6 | .\debug\spi.o: ..\stm32f10x_conf.h
7 | .\debug\spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
8 | .\debug\spi.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
9 | .\debug\spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
10 | .\debug\spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
11 | .\debug\spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
12 | .\debug\spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
13 | .\debug\spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
14 | .\debug\spi.o: ..\SPI.h
15 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/startup_stm32f10x_md_vl.d:
--------------------------------------------------------------------------------
1 | .\debug\startup_stm32f10x_md_vl.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_md_vl.s
2 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_adc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_adc.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_adc.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c
2 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
3 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_adc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_adc.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_adc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_bkp.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_bkp.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_bkp.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c
2 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
3 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_bkp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_bkp.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_bkp.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_can.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_can.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_can.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c
2 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
3 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_can.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_can.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_can.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_cec.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_cec.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_cec.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c
2 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
3 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_cec.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_cec.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_cec.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_crc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_crc.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_crc.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c
2 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
3 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_crc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_crc.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_crc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dac.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dac.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dac.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c
2 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
3 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_dac.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_dac.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_dac.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dbgmcu.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dbgmcu.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dbgmcu.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c
2 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
3 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_dbgmcu.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_dbgmcu.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_dbgmcu.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dma.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dma.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_dma.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c
2 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
3 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_dma.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_dma.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_dma.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_exti.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_exti.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_exti.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c
2 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
3 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_exti.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_exti.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
10 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
11 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_exti.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_flash.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_flash.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_flash.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c
2 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
3 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_flash.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_flash.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_flash.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_fsmc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_fsmc.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_fsmc.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c
2 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
3 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_fsmc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_fsmc.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_fsmc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_gpio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_gpio.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_gpio.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c
2 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
3 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_gpio.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_gpio.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_gpio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_i2c.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_i2c.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_i2c.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c
2 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
3 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_i2c.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_i2c.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_i2c.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_it.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_it.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_it.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_it.o: ..\stm32f10x_it.c
2 | .\debug\stm32f10x_it.o: ..\stm32f10x_it.h
3 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_it.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_it.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_it.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_iwdg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_iwdg.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_iwdg.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c
2 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
3 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_iwdg.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_iwdg.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_iwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_pwr.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_pwr.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_pwr.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c
2 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
3 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_pwr.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_pwr.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_pwr.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_rcc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_rcc.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_rcc.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c
2 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
3 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_rcc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_rcc.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_rcc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_rtc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_rtc.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_rtc.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c
2 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
3 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_rtc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_rtc.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_rtc.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_sdio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_sdio.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_sdio.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c
2 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
3 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_sdio.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_sdio.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_sdio.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_spi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_spi.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_spi.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c
2 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
3 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_spi.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_spi.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_spi.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_tim.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_tim.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_tim.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c
2 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
3 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_tim.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_tim.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_tim.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_usart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_usart.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_usart.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c
2 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
3 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_usart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_usart.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_usart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_wwdg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_wwdg.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32f10x_wwdg.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c
2 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
3 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
4 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32f10x_wwdg.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32f10x_wwdg.o: ..\stm32f10x_conf.h
8 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32f10x_wwdg.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32vldiscovery.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32vldiscovery.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/stm32vldiscovery.d:
--------------------------------------------------------------------------------
1 | .\debug\stm32vldiscovery.o: ..\..\..\..\Utilities\STM32vldiscovery.c
2 | .\debug\stm32vldiscovery.o: ..\..\..\..\Utilities\STM32vldiscovery.h
3 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\STM32f10x.h
4 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
5 | .\debug\stm32vldiscovery.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
6 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
7 | .\debug\stm32vldiscovery.o: ..\stm32f10x_conf.h
8 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
9 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
10 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
11 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
12 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
13 | .\debug\stm32vldiscovery.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
14 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/system_stm32f10x.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/system_stm32f10x.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/system_stm32f10x.d:
--------------------------------------------------------------------------------
1 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c
2 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
3 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
4 | .\debug\system_stm32f10x.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
5 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
6 | .\debug\system_stm32f10x.o: ..\stm32f10x_conf.h
7 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
8 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
9 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
10 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
11 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
12 | .\debug\system_stm32f10x.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
13 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/uart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/MDK-ARM/Debug/uart.crf
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/MDK-ARM/Debug/uart.d:
--------------------------------------------------------------------------------
1 | .\debug\uart.o: ..\UART.c
2 | .\debug\uart.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
3 | .\debug\uart.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
4 | .\debug\uart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
5 | .\debug\uart.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h
6 | .\debug\uart.o: ..\stm32f10x_conf.h
7 | .\debug\uart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
8 | .\debug\uart.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h
9 | .\debug\uart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
10 | .\debug\uart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
11 | .\debug\uart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
12 | .\debug\uart.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
13 | .\debug\uart.o: ..\UART.h
14 | .\debug\uart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
15 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/SPI.c:
--------------------------------------------------------------------------------
1 | #include "stm32f10x.h"
2 | #include "stm32f10x_spi.h"
3 | #include "SPI.h"
4 |
5 | /*
6 | * SPI.c
7 | *
8 | * Created on: Nov 22, 2012
9 | * Author: Admin
10 | */
11 | void SPI_Init_For_RF(void)
12 | {
13 | SPI_InitTypeDef SPI_InitStructure;
14 | GPIO_InitTypeDef GPIO_InitStructure;
15 |
16 | /* Init CSN pin */
17 | GPIO_InitStructure.GPIO_Pin = CSN_PIN;
18 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
19 | GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
20 | GPIO_Init(CSN_PORT, &GPIO_InitStructure);
21 |
22 | /* Init CE pin */
23 | GPIO_InitStructure.GPIO_Pin = CE_PIN;
24 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
25 | GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
26 | GPIO_Init(CE_PORT, &GPIO_InitStructure);
27 |
28 | /* Init IRQ pin */
29 | GPIO_InitStructure.GPIO_Pin = IRQ_PIN;
30 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
31 | GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
32 | GPIO_Init(IRQ_PORT, &GPIO_InitStructure);
33 |
34 | /* Enable SPI1 clocks */
35 | RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE);
36 |
37 | /* Configure SPI1 pins: SCK, MISO and MOSI */
38 | GPIO_InitStructure.GPIO_Pin = SCLK_PIN | MISO_PIN | MOSI_PIN;
39 | GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
40 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
41 | GPIO_Init(SCLK_PORT, &GPIO_InitStructure);
42 |
43 | /* SPI1 configuration */
44 | SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;
45 | SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
46 | SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
47 | SPI_InitStructure.SPI_CPOL = SPI_CPOL_Low;
48 | SPI_InitStructure.SPI_CPHA = SPI_CPHA_1Edge;
49 | SPI_InitStructure.SPI_NSS = SPI_NSS_Soft;
50 | SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_16;
51 | SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;
52 | SPI_InitStructure.SPI_CRCPolynomial = 7;
53 | SPI_Init(SPI1, &SPI_InitStructure);
54 |
55 | /* Enable SPI1 */
56 | SPI_Cmd(SPI1, ENABLE);
57 |
58 | spi_csh();
59 | }
60 |
61 |
62 | unsigned char SPI_Xfer_byte(unsigned char data)
63 | {
64 | /* Loop while DR register in not emplty */
65 | while (SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE) == RESET);
66 | /* Send byte through the SPI1 peripheral */
67 | SPI_I2S_SendData(SPI1, (uint16_t) data);
68 | /* Wait to receive a byte */
69 | while (SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_RXNE) == RESET);
70 | /* Return the byte read from the SPI bus */
71 | return SPI_I2S_ReceiveData(SPI1);
72 | }
73 |
74 | void spi_csh(void)
75 | {
76 | GPIO_SetBits(CSN_PORT, CSN_PIN) ;
77 | }
78 |
79 | void spi_csl(void)
80 | {
81 | GPIO_ResetBits(CSN_PORT, CSN_PIN) ;
82 | }
83 |
84 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/SPI.h:
--------------------------------------------------------------------------------
1 |
2 | /*
3 | * SPI.h
4 | *
5 | * Created on: Nov 22, 2012
6 | * Author: Admin
7 | */
8 |
9 | #ifndef SPI_H_
10 | #define SPI_H_
11 |
12 | #define SCLK_PORT GPIOA
13 | #define SCLK_PIN GPIO_Pin_5
14 |
15 | #define MISO_PORT GPIOA
16 | #define MISO_PIN GPIO_Pin_6
17 |
18 | #define MOSI_PORT GPIOA
19 | #define MOSI_PIN GPIO_Pin_7
20 |
21 | #define CSN_PORT GPIOA
22 | #define CSN_PIN GPIO_Pin_4
23 |
24 | #define CE_PORT GPIOA
25 | #define CE_PIN GPIO_Pin_3
26 |
27 | #define IRQ_PORT GPIOA
28 | #define IRQ_PIN GPIO_Pin_2
29 |
30 |
31 | void spi_csh(void);
32 | void spi_csl(void);
33 | void SPI_Init_For_RF(void);
34 | void Send_byte(int data, int time_ms);
35 | unsigned char SPI_Xfer_byte(unsigned char data);
36 |
37 | #endif /* SPI_H_ */
38 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/TrueSTUDIO/GPIOToggle_Project/.settings/com.atollic.truestudio.debug.hardware_device.prefs:
--------------------------------------------------------------------------------
1 | #Tue Jul 13 09:06:52 GMT+01:00 2010
2 | BOARD=STM32_Discovery
3 | CODE_LOCATION=FLASH
4 | ENDIAN=Little-endian
5 | MCU=STM32F100RB
6 | MODEL=Lite
7 | PROBE=ST-LINK
8 | PROJECT_FORMAT_VERSION=1
9 | TARGET=STM32
10 | VERSION=1.4.0
11 | eclipse.preferences.version=1
12 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/TrueSTUDIO/stm32_flash.ld:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/TrueSTUDIO/stm32_flash.ld
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/UART.h:
--------------------------------------------------------------------------------
1 | #ifndef UART_H_
2 | #define UART_H_
3 |
4 |
5 | void uart_init(void);
6 | void uart_putc(char c);
7 | void uart_puts(const char *s);
8 | void uart_put_num (unsigned long val, char dec, unsigned char neg);
9 | char uart_data_ready(void);
10 | char uart_getc(void);
11 | void uart_gets(char *s);
12 | void uart_printi(int n);
13 | void printreg(char *name, int n);
14 | #endif /* UART_H_ */
15 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/debug.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/debug.c
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/debug.h:
--------------------------------------------------------------------------------
1 | #ifndef __DEBUG_H_
2 | #define __DEBUG_H_
3 |
4 | #include "define.h"
5 |
6 | #endif
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/define.h:
--------------------------------------------------------------------------------
1 | #ifndef __DEFINE_H_
2 | #define __DEFINE_H_
3 |
4 |
5 |
6 | /* Kernel includes. */
7 | //#include "FreeRTOS.h"
8 | //#include "task.h"
9 | //#include "queue.h"
10 | //#include "timers.h"
11 | //#include "semphr.h"
12 |
13 | /* firmware include */
14 | #include "stm32f10x.h"
15 | #include "STM32vldiscovery.h"
16 | #include "stm32f10x_usart.h"
17 |
18 | /* user include */
19 | #include "debug.h"
20 | #include "realtimer.h"
21 |
22 |
23 | /* Standard includes. */
24 | #include
25 |
26 |
27 |
28 | /* define */
29 | #define mainQUEUE_RECEIVE_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
30 | #define mainQUEUE_SEND_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
31 | #define mainEVENT_SEMAPHORE_TASK_PRIORITY ( configMAX_PRIORITIES - 1 )
32 |
33 | #define mainQUEUE_SEND_PERIOD_MS ( 200 / portTICK_RATE_MS )
34 |
35 | #define mainSOFTWARE_TIMER_PERIOD_MS ( 1000 / portTICK_RATE_MS )
36 |
37 | #define mainQUEUE_LENGTH ( 1 )
38 |
39 |
40 |
41 |
42 | #endif
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/readme.txt:
--------------------------------------------------------------------------------
1 | /**
2 | @page GPIOToggle GPIOToggle
3 |
4 | @verbatim
5 | ******************** (C) COPYRIGHT 2010 STMicroelectronics *******************
6 | * @file Examples/GPIOToggle/readme.txt
7 | * @author MCD Application Team
8 | * @version V1.0.0
9 | * @date 09/13/2010
10 | * @brief Description of the IOToggle Example.
11 | ******************************************************************************
12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 | ******************************************************************************
19 | @endverbatim
20 |
21 | @par Example Description
22 |
23 | This example describes how to use GPIO BSRR (Port bit set/reset register) and
24 | BRR (Port bit reset register) for IO toggling.
25 | These registers allow modifying only one or several GPIO pins in a single atomic
26 | write access.
27 | Four LEDs are toggled in an infinite loop.
28 |
29 | @par Directory contents
30 |
31 | - GPIOToggle/stm32f10x_conf.h Library Configuration file
32 | - GPIOToggle/stm32f10x_it.c Interrupt handlers
33 | - GPIOToggle/stm32f10x_it.h Header for stm32f10x_it.c
34 | - GPIOToggle/main.c Main program
35 |
36 | @par Hardware and Software environment
37 |
38 | - This example runs on STM32VLDISCOVERY board.
39 |
40 | - This example has been tested with STMicroelectronics STM32VLDISCOVERY board
41 | and can be easily tailored to any other supported device and development board.
42 |
43 |
44 | - STM32VLDISCOVERY Set-up
45 | - Use LD3 and LD4 connected respectively to PC.09 and PC.08 pins
46 |
47 |
48 | @par How to use it ?
49 |
50 | In order to make the program work, you must do the following:
51 | - Create a project and setup all project configuration
52 | - Add the required Library files:
53 | - stm32f10x_gpio.c
54 | - stm32f10x_exti.c
55 | - stm32f10x_rcc.c
56 | - misc.c
57 | - STM32vldiscovery.c (under Utilities)
58 | - system_stm32f10x.c (under Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x)
59 | - Link all compiled files and load your image into target memory
60 | - Run the example
61 |
62 | * © COPYRIGHT 2010 STMicroelectronics
63 | */
64 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/realtimer.c:
--------------------------------------------------------------------------------
1 | #include "realtimer.h"
2 |
3 | realTime mytime = {0,0,0,0};
4 |
5 | void timerTask(void * input){
6 | portTickType xLastWakeTime;
7 | const portTickType xFrequency = 10;
8 |
9 | while (1){
10 | xLastWakeTime = xTaskGetTickCount();
11 | vTaskDelayUntil(&xLastWakeTime,xFrequency);
12 |
13 | mytime.milisecond = 0;
14 | mytime.second ++;
15 | if (mytime.second == 60){
16 | mytime.second = 0;
17 | mytime.minute++;
18 | if (mytime.minute == 60){
19 | mytime.minute = 0;
20 | mytime.hour ++;
21 | }
22 | }
23 |
24 | printTime();
25 |
26 |
27 | }
28 |
29 | }
30 |
31 | void printTime(void){
32 | printf("Time: %d : %d : %d\r\n", mytime.hour, mytime.minute, mytime.second);
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/realtimer.h:
--------------------------------------------------------------------------------
1 | #ifndef __TIMER_H_
2 | #define __TIMER_H_
3 |
4 | #include "define.h"
5 |
6 | typedef struct {
7 | unsigned char hour;
8 | unsigned char minute;
9 | unsigned char second;
10 | unsigned int milisecond;
11 | } realTime;
12 |
13 | void timerTask(void*);
14 | void printTime(void);
15 |
16 |
17 | #endif
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IAB:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IAB
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IAD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IAD
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IMB:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IMB
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IMD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.IMD
--------------------------------------------------------------------------------
/Project/Examples/GPIOToggle/source_insight/stm32_nrf.PFI:
--------------------------------------------------------------------------------
1 | 5
2 |
6 7 8 ! 9 " : # ; $ <