├── .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 |  67 8!9":#;$<%=&>'?(@)A*B+C,D-E.F/G0H1I2J3K4 -------------------------------------------------------------------------------- /Project/Examples/GPIOToggle/source_insight/stm32_nrf.PO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.PO -------------------------------------------------------------------------------- /Project/Examples/GPIOToggle/source_insight/stm32_nrf.PR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.PR -------------------------------------------------------------------------------- /Project/Examples/GPIOToggle/source_insight/stm32_nrf.PRI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.PRI -------------------------------------------------------------------------------- /Project/Examples/GPIOToggle/source_insight/stm32_nrf.PS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/GPIOToggle/source_insight/stm32_nrf.PS -------------------------------------------------------------------------------- /Project/Examples/GPIOToggle/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file Examples/GPIOToggle/stm32f10x_conf.h 4 | * @author MCD Application Team 5 | * @version V1.0.0 6 | * @date 09/13/2010 7 | * @brief Library configuration file. 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 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F10x_CONF_H 23 | #define __STM32F10x_CONF_H 24 | 25 | /* Includes ------------------------------------------------------------------*/ 26 | /* Uncomment the line below to enable peripheral header file inclusion */ 27 | /* #include "stm32f10x_adc.h" */ 28 | /* #include "stm32f10x_bkp.h" */ 29 | /* #include "stm32f10x_can.h" */ 30 | /* #include "stm32f10x_cec.h" */ 31 | /* #include "stm32f10x_crc.h" */ 32 | /* #include "stm32f10x_dac.h" */ 33 | /* #include "stm32f10x_dbgmcu.h" */ 34 | /* #include "stm32f10x_dma.h" */ 35 | #include "stm32f10x_exti.h" 36 | /* #include "stm32f10x_flash.h" */ 37 | /* #include "stm32f10x_fsmc.h" */ 38 | #include "stm32f10x_gpio.h" 39 | /* #include "stm32f10x_i2c.h" */ 40 | /* #include "stm32f10x_iwdg.h" */ 41 | /* #include "stm32f10x_pwr.h" */ 42 | #include "stm32f10x_rcc.h" 43 | /* #include "stm32f10x_rtc.h" */ 44 | /* #include "stm32f10x_sdio.h" */ 45 | /* #include "stm32f10x_spi.h" */ 46 | /* #include "stm32f10x_tim.h" */ 47 | #include "stm32f10x_usart.h" 48 | /* #include "stm32f10x_wwdg.h" */ 49 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 50 | 51 | /* Exported types ------------------------------------------------------------*/ 52 | /* Exported constants --------------------------------------------------------*/ 53 | /* Uncomment the line below to expanse the "assert_param" macro in the 54 | Standard Peripheral Library drivers code */ 55 | /* #define USE_FULL_ASSERT 1 */ 56 | 57 | /* Exported macro ------------------------------------------------------------*/ 58 | #ifdef USE_FULL_ASSERT 59 | 60 | /** 61 | * @brief The assert_param macro is used for function's parameters check. 62 | * @param expr: If expr is false, it calls assert_failed function 63 | * which reports the name of the source file and the source 64 | * line number of the call that failed. 65 | * If expr is true, it returns no value. 66 | * @retval None 67 | */ 68 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 69 | /* Exported functions ------------------------------------------------------- */ 70 | void assert_failed(uint8_t* file, uint32_t line); 71 | #else 72 | #define assert_param(expr) ((void)0) 73 | #endif /* USE_FULL_ASSERT */ 74 | 75 | #endif /* __STM32F10x_CONF_H */ 76 | 77 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/ 78 | -------------------------------------------------------------------------------- /Project/Examples/GPIOToggle/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIOToggle/stm32f10x_it.h 4 | * @author MCD Application Team 5 | * @version V.0.0 6 | * @date 09/13/2010 7 | * @brief This file contains the headers of the interrupt handlers. 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 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F10x_IT_H 23 | #define __STM32F10x_IT_H 24 | 25 | /* Includes ------------------------------------------------------------------*/ 26 | #include "stm32f10x.h" 27 | 28 | /* Exported types ------------------------------------------------------------*/ 29 | /* Exported constants --------------------------------------------------------*/ 30 | /* Exported macro ------------------------------------------------------------*/ 31 | /* Exported functions ------------------------------------------------------- */ 32 | 33 | void NMI_Handler(void); 34 | void HardFault_Handler(void); 35 | void MemManage_Handler(void); 36 | void BusFault_Handler(void); 37 | void UsageFault_Handler(void); 38 | void SVC_Handler(void); 39 | void DebugMon_Handler(void); 40 | void PendSV_Handler(void); 41 | void SysTick_Handler(void); 42 | 43 | #endif /* __STM32F10x_IT_H */ 44 | 45 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/ 46 | -------------------------------------------------------------------------------- /Project/Examples/test/EWARMv5/GPIOToggle.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\GPIOToggle.ewp 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /Project/Examples/test/MDK-ARM/Debug/GPIOToggle.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/GPIOToggle.build_log.htm -------------------------------------------------------------------------------- /Project/Examples/test/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/test/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/test/MDK-ARM/Debug/core_cm3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/core_cm3.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/debug.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/debug.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/main.crf -------------------------------------------------------------------------------- /Project/Examples/test/MDK-ARM/Debug/main.d: -------------------------------------------------------------------------------- 1 | .\debug\main.o: ..\main.c 2 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h 3 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h 4 | .\debug\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 5 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h 6 | .\debug\main.o: ..\stm32f10x_conf.h 7 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h 8 | .\debug\main.o: ..\..\..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h 9 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h 10 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h 11 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h 12 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h 13 | .\debug\main.o: ..\..\..\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h 14 | .\debug\main.o: ..\nrf24l01.h 15 | .\debug\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h 16 | -------------------------------------------------------------------------------- /Project/Examples/test/MDK-ARM/Debug/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/misc.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/nrf24l01.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/nrf24l01.crf -------------------------------------------------------------------------------- /Project/Examples/test/MDK-ARM/Debug/nrf24l01.d: -------------------------------------------------------------------------------- 1 | .\debug\nrf24l01.o: ..\nrf24l01.c 2 | -------------------------------------------------------------------------------- /Project/Examples/test/MDK-ARM/Debug/realtimer.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/realtimer.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/spi.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/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/test/MDK-ARM/Debug/stm32f10x_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_adc.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_bkp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_bkp.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_can.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_can.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_cec.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_cec.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_crc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_crc.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_dac.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_dac.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_dbgmcu.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_dbgmcu.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_dma.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_exti.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_flash.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_fsmc.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_gpio.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_i2c.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_it.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_iwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_iwdg.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_pwr.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_rcc.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_rtc.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_sdio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_sdio.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_spi.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_tim.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_usart.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32f10x_wwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32f10x_wwdg.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/stm32vldiscovery.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/stm32vldiscovery.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/system_stm32f10x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/system_stm32f10x.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/MDK-ARM/Debug/uart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/MDK-ARM/Debug/uart.crf -------------------------------------------------------------------------------- /Project/Examples/test/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/test/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_10MHz; 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_4; 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/test/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/test/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/test/TrueSTUDIO/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/TrueSTUDIO/stm32_flash.ld -------------------------------------------------------------------------------- /Project/Examples/test/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/test/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/debug.c -------------------------------------------------------------------------------- /Project/Examples/test/debug.h: -------------------------------------------------------------------------------- 1 | #ifndef __DEBUG_H_ 2 | #define __DEBUG_H_ 3 | 4 | #include "define.h" 5 | 6 | #endif 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Project/Examples/test/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/test/nrf24l01.h: -------------------------------------------------------------------------------- 1 | #define ADR_WIDTH 5 2 | 3 | #define RX_PLOAD_WIDTH 32 4 | #define TX_PLOAD_WIDTH 32 5 | #define Buffer_Size 32 6 | 7 | //Define RF power value 8 | #define P0dBm 0 9 | #define Pm6dBm 1 10 | #define Pm12dBm 2 11 | #define Pm18dBm 3 12 | 13 | //#define RF rate 14 | #define R2mbps 0 15 | #define R1mbps 1 16 | #define R250kbps 3 17 | 18 | 19 | 20 | void RX_Mode(void); 21 | void TX_Mode(void); 22 | void nRF24L01_TxPacket(unsigned char * tx_buf); 23 | unsigned char nRF24L01_RxPacket(unsigned char* rx_buf); 24 | void nRF24L01_HW_Init(void); 25 | void nRF24L01_Init_Soft(void); 26 | unsigned char SPI_RD_Reg(unsigned char reg); 27 | unsigned char SPI_WR_Reg(unsigned char reg, unsigned char value); 28 | void nRF24L01_Delay_us(unsigned long n); 29 | void nRF24L01_SPI_NSS_L(void); 30 | void nRF24L01_SPI_NSS_H(void); 31 | void nRF24L01_CE_L(void); 32 | void nRF24L01_CE_H(void); 33 | 34 | -------------------------------------------------------------------------------- /Project/Examples/test/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/test/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/test/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/test/source_insight/stm32_nrf.IAB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.IAB -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.IAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.IAD -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.IMB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.IMB -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.IMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.IMD -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.PFI: -------------------------------------------------------------------------------- 1 | 5 2 |  67 8!9":#;$<%=&>'?(@)A*B+ C,D-E.F/G0H1I2J3K4 -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.PO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.PO -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.PR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.PR -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.PRI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.PRI -------------------------------------------------------------------------------- /Project/Examples/test/source_insight/stm32_nrf.PS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/Examples/test/source_insight/stm32_nrf.PS -------------------------------------------------------------------------------- /Project/Examples/test/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file Examples/GPIOToggle/stm32f10x_conf.h 4 | * @author MCD Application Team 5 | * @version V1.0.0 6 | * @date 09/13/2010 7 | * @brief Library configuration file. 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 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F10x_CONF_H 23 | #define __STM32F10x_CONF_H 24 | 25 | /* Includes ------------------------------------------------------------------*/ 26 | /* Uncomment the line below to enable peripheral header file inclusion */ 27 | /* #include "stm32f10x_adc.h" */ 28 | /* #include "stm32f10x_bkp.h" */ 29 | /* #include "stm32f10x_can.h" */ 30 | /* #include "stm32f10x_cec.h" */ 31 | /* #include "stm32f10x_crc.h" */ 32 | /* #include "stm32f10x_dac.h" */ 33 | /* #include "stm32f10x_dbgmcu.h" */ 34 | /* #include "stm32f10x_dma.h" */ 35 | #include "stm32f10x_exti.h" 36 | /* #include "stm32f10x_flash.h" */ 37 | /* #include "stm32f10x_fsmc.h" */ 38 | #include "stm32f10x_gpio.h" 39 | /* #include "stm32f10x_i2c.h" */ 40 | /* #include "stm32f10x_iwdg.h" */ 41 | /* #include "stm32f10x_pwr.h" */ 42 | #include "stm32f10x_rcc.h" 43 | /* #include "stm32f10x_rtc.h" */ 44 | /* #include "stm32f10x_sdio.h" */ 45 | /* #include "stm32f10x_spi.h" */ 46 | /* #include "stm32f10x_tim.h" */ 47 | #include "stm32f10x_usart.h" 48 | /* #include "stm32f10x_wwdg.h" */ 49 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 50 | 51 | /* Exported types ------------------------------------------------------------*/ 52 | /* Exported constants --------------------------------------------------------*/ 53 | /* Uncomment the line below to expanse the "assert_param" macro in the 54 | Standard Peripheral Library drivers code */ 55 | /* #define USE_FULL_ASSERT 1 */ 56 | 57 | /* Exported macro ------------------------------------------------------------*/ 58 | #ifdef USE_FULL_ASSERT 59 | 60 | /** 61 | * @brief The assert_param macro is used for function's parameters check. 62 | * @param expr: If expr is false, it calls assert_failed function 63 | * which reports the name of the source file and the source 64 | * line number of the call that failed. 65 | * If expr is true, it returns no value. 66 | * @retval None 67 | */ 68 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 69 | /* Exported functions ------------------------------------------------------- */ 70 | void assert_failed(uint8_t* file, uint32_t line); 71 | #else 72 | #define assert_param(expr) ((void)0) 73 | #endif /* USE_FULL_ASSERT */ 74 | 75 | #endif /* __STM32F10x_CONF_H */ 76 | 77 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/ 78 | -------------------------------------------------------------------------------- /Project/Examples/test/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIOToggle/stm32f10x_it.h 4 | * @author MCD Application Team 5 | * @version V.0.0 6 | * @date 09/13/2010 7 | * @brief This file contains the headers of the interrupt handlers. 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 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F10x_IT_H 23 | #define __STM32F10x_IT_H 24 | 25 | /* Includes ------------------------------------------------------------------*/ 26 | #include "stm32f10x.h" 27 | 28 | /* Exported types ------------------------------------------------------------*/ 29 | /* Exported constants --------------------------------------------------------*/ 30 | /* Exported macro ------------------------------------------------------------*/ 31 | /* Exported functions ------------------------------------------------------- */ 32 | 33 | void NMI_Handler(void); 34 | void HardFault_Handler(void); 35 | void MemManage_Handler(void); 36 | void BusFault_Handler(void); 37 | void UsageFault_Handler(void); 38 | void SVC_Handler(void); 39 | void DebugMon_Handler(void); 40 | void PendSV_Handler(void); 41 | void SysTick_Handler(void); 42 | 43 | #endif /* __STM32F10x_IT_H */ 44 | 45 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/ 46 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/lst/startup_stm32f4xx.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/lst/startup_stm32f4xx.lst -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master.build_log.htm -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master.lnp: -------------------------------------------------------------------------------- 1 | --cpu Cortex-M4 ".\obj\main.o" ".\obj\stm32f4xx_it.o" ".\obj\system_stm32f4xx.o" ".\obj\misc.o" ".\obj\stm32f4xx_gpio.o" ".\obj\stm32f4xx_rcc.o" ".\obj\stm32f4xx_syscfg.o" ".\obj\stm32f4xx_spi.o" ".\obj\stm32f4xx_usart.o" ".\obj\nrf24l01p.o" ".\obj\startup_stm32f4xx.o" 2 | --library_type=microlib --strict --scatter ".\obj\SPI_RF_Master.sct" 3 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols 4 | --info sizes --info totals --info unused --info veneers 5 | --list ".\lst\SPI_RF_Master.map" -o .\obj\SPI_RF_Master.axf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master.plg -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master.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/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master.tra: -------------------------------------------------------------------------------- 1 | *** Creating Trace Output File '.\obj\SPI_RF_Master.tra' Ok. 2 | ### Preparing for ADS-LD. 3 | ### Creating ADS-LD Command Line 4 | ### List of Objects: adding '".\obj\main.o"' 5 | ### List of Objects: adding '".\obj\stm32f4xx_it.o"' 6 | ### List of Objects: adding '".\obj\system_stm32f4xx.o"' 7 | ### List of Objects: adding '".\obj\misc.o"' 8 | ### List of Objects: adding '".\obj\stm32f4xx_gpio.o"' 9 | ### List of Objects: adding '".\obj\stm32f4xx_rcc.o"' 10 | ### List of Objects: adding '".\obj\stm32f4xx_syscfg.o"' 11 | ### List of Objects: adding '".\obj\stm32f4xx_spi.o"' 12 | ### List of Objects: adding '".\obj\stm32f4xx_usart.o"' 13 | ### List of Objects: adding '".\obj\nrf24l01p.o"' 14 | ### List of Objects: adding '".\obj\startup_stm32f4xx.o"' 15 | ### ADS-LD Command completed: 16 | --cpu Cortex-M4 ".\obj\main.o" ".\obj\stm32f4xx_it.o" ".\obj\system_stm32f4xx.o" ".\obj\misc.o" ".\obj\stm32f4xx_gpio.o" ".\obj\stm32f4xx_rcc.o" ".\obj\stm32f4xx_syscfg.o" ".\obj\stm32f4xx_spi.o" ".\obj\stm32f4xx_usart.o" ".\obj\nrf24l01p.o" ".\obj\startup_stm32f4xx.o" 17 | --library_type=microlib --strict --scatter ".\obj\SPI_RF_Master.sct" 18 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols 19 | --info sizes --info totals --info unused --info veneers 20 | --list ".\lst\SPI_RF_Master.map" -o .\obj\SPI_RF_Master.axf### Preparing Environment (PrepEnvAds) 21 | ### ADS-LD Output File: '.\obj\SPI_RF_Master.axf' 22 | ### ADS-LD Command File: '.\obj\SPI_RF_Master.lnp' 23 | ### Checking for dirty Components... 24 | ### Creating CmdFile '.\obj\SPI_RF_Master.lnp', Handle=0x00000754 25 | ### Writing '.lnp' file 26 | ### ADS-LD Command file '.\obj\SPI_RF_Master.lnp' is ready. 27 | ### ADS-LD: About to start ADS-LD Thread. 28 | ### ADS-LD: executed with 0 errors 29 | ### Updating obj list 30 | ### LDADS_file() completed. 31 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/SPI_RF_Master_sct.Bak: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00100000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00100000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | } 11 | RW_IRAM1 0x20000000 0x00020000 { ; RW data 12 | .ANY (+RW +ZI) 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/main.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/main.d: -------------------------------------------------------------------------------- 1 | .\obj\main.o: ..\main.c 2 | .\obj\main.o: C:\Keil\ARM\Inc\ST\STM32F10x\stm32f10x.h 3 | .\obj\main.o: C:\Keil\ARM\CMSIS\Include\core_cm3.h 4 | .\obj\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 5 | .\obj\main.o: C:\Keil\ARM\CMSIS\Include\core_cmInstr.h 6 | .\obj\main.o: C:\Keil\ARM\CMSIS\Include\core_cmFunc.h 7 | .\obj\main.o: C:\Keil\ARM\Inc\ST\STM32F10x\system_stm32f10x.h 8 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/misc.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/misc.d: -------------------------------------------------------------------------------- 1 | .\obj\misc.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/nrf24l01p.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/nrf24l01p.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/nrf24l01p.d: -------------------------------------------------------------------------------- 1 | .\obj\nrf24l01p.o: ..\nRF24l01\nRF24L01P.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/startup_stm32f4xx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/startup_stm32f4xx.d -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_adc.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_adc.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_bkp.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_bkp.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_can.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_can.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_cec.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_cec.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_crc.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_crc.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_dac.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_dac.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_dbgmcu.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_dbgmcu.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_dma.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_dma.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_exti.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_exti.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_flash.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_flash.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_fsmc.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_fsmc.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_gpio.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_gpio.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_i2c.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_i2c.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_it.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_it.o: ..\stm32f10x_it.c 2 | .\obj\stm32f10x_it.o: ..\stm32f10x_it.h 3 | .\obj\stm32f10x_it.o: C:\Keil\ARM\Inc\ST\STM32F10x\stm32f10x.h 4 | .\obj\stm32f10x_it.o: C:\Keil\ARM\CMSIS\Include\core_cm3.h 5 | .\obj\stm32f10x_it.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\obj\stm32f10x_it.o: C:\Keil\ARM\CMSIS\Include\core_cmInstr.h 7 | .\obj\stm32f10x_it.o: C:\Keil\ARM\CMSIS\Include\core_cmFunc.h 8 | .\obj\stm32f10x_it.o: C:\Keil\ARM\Inc\ST\STM32F10x\system_stm32f10x.h 9 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_iwdg.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_iwdg.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_pwr.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_pwr.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_rcc.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_rcc.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_rtc.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_rtc.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_sdio.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_sdio.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_spi.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_spi.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_tim.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_tim.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_usart.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_usart.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f10x_wwdg.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f10x_wwdg.o: ..\..\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c 2 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_gpio.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_gpio.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_gpio.c 2 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 3 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 4 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\Include\core_cm4.h 5 | .\obj\stm32f4xx_gpio.o: D:\Program Files\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\Include\core_cmInstr.h 7 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\Include\core_cmFunc.h 8 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\Include\core_cm4_simd.h 9 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\system_stm32f4xx.h 10 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx_conf.h 11 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 12 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 13 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 14 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 15 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h 16 | .\obj\stm32f4xx_gpio.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h 17 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_it.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_it.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f4xx_it.o: ..\stm32f4xx_it.c 2 | .\obj\stm32f4xx_it.o: ..\stm32f4xx_it.h 3 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 4 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\Include\core_cm4.h 5 | .\obj\stm32f4xx_it.o: D:\Program Files\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\Include\core_cmInstr.h 7 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\Include\core_cmFunc.h 8 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\Include\core_cm4_simd.h 9 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\system_stm32f4xx.h 10 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx_conf.h 11 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 12 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 13 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 14 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 15 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h 16 | .\obj\stm32f4xx_it.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h 17 | .\obj\stm32f4xx_it.o: ..\main.h 18 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_rcc.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_rcc.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rcc.c 2 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 3 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 4 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\Include\core_cm4.h 5 | .\obj\stm32f4xx_rcc.o: D:\Program Files\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\Include\core_cmInstr.h 7 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\Include\core_cmFunc.h 8 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\Include\core_cm4_simd.h 9 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\system_stm32f4xx.h 10 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx_conf.h 11 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 12 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 13 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 14 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 15 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h 16 | .\obj\stm32f4xx_rcc.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h 17 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_spi.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_spi.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_spi.c 2 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_spi.h 3 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 4 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\Include\core_cm4.h 5 | .\obj\stm32f4xx_spi.o: D:\Program Files\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\Include\core_cmInstr.h 7 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\Include\core_cmFunc.h 8 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\Include\core_cm4_simd.h 9 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\system_stm32f4xx.h 10 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx_conf.h 11 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 12 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 13 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 14 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 15 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h 16 | .\obj\stm32f4xx_spi.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h 17 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_syscfg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_syscfg.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_syscfg.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_syscfg.c 2 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 3 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 4 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\Include\core_cm4.h 5 | .\obj\stm32f4xx_syscfg.o: D:\Program Files\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\Include\core_cmInstr.h 7 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\Include\core_cmFunc.h 8 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\Include\core_cm4_simd.h 9 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\system_stm32f4xx.h 10 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx_conf.h 11 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 12 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 13 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 14 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 15 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h 16 | .\obj\stm32f4xx_syscfg.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h 17 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_usart.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/stm32f4xx_usart.d: -------------------------------------------------------------------------------- 1 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_usart.c 2 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_usart.h 3 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 4 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\Include\core_cm4.h 5 | .\obj\stm32f4xx_usart.o: D:\Program Files\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\Include\core_cmInstr.h 7 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\Include\core_cmFunc.h 8 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\Include\core_cm4_simd.h 9 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\system_stm32f4xx.h 10 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx_conf.h 11 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 12 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 13 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 14 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 15 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h 16 | .\obj\stm32f4xx_usart.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h 17 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/system_stm32f10x.d: -------------------------------------------------------------------------------- 1 | .\obj\system_stm32f10x.o: ..\system_stm32f10x.c 2 | .\obj\system_stm32f10x.o: C:\Keil\ARM\Inc\ST\STM32F10x\stm32f10x.h 3 | .\obj\system_stm32f10x.o: C:\Keil\ARM\CMSIS\Include\core_cm3.h 4 | .\obj\system_stm32f10x.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 5 | .\obj\system_stm32f10x.o: C:\Keil\ARM\CMSIS\Include\core_cmInstr.h 6 | .\obj\system_stm32f10x.o: C:\Keil\ARM\CMSIS\Include\core_cmFunc.h 7 | .\obj\system_stm32f10x.o: C:\Keil\ARM\Inc\ST\STM32F10x\system_stm32f10x.h 8 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/system_stm32f4xx.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Project/SPI_RF_Master/MDK-ARM/obj/system_stm32f4xx.crf -------------------------------------------------------------------------------- /Project/SPI_RF_Master/MDK-ARM/obj/system_stm32f4xx.d: -------------------------------------------------------------------------------- 1 | .\obj\system_stm32f4xx.o: ..\system_stm32f4xx.c 2 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 3 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\Include\core_cm4.h 4 | .\obj\system_stm32f4xx.o: D:\Program Files\Keil\ARM\ARMCC\bin\..\include\stdint.h 5 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\Include\core_cmInstr.h 6 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\Include\core_cmFunc.h 7 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\Include\core_cm4_simd.h 8 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\system_stm32f4xx.h 9 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx_conf.h 10 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h 11 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\CMSIS\ST\STM32F4xx\Include\stm32f4xx.h 12 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h 13 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h 14 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h 15 | .\obj\system_stm32f4xx.o: ..\..\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h 16 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/main.h: -------------------------------------------------------------------------------- 1 | 2 | void TimingDelay_Decrement(void); 3 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/nRF24l01/nRF24L01P.h: -------------------------------------------------------------------------------- 1 | #define ADR_WIDTH 5 2 | 3 | #define RX_PLOAD_WIDTH 32 4 | #define TX_PLOAD_WIDTH 32 5 | #define Buffer_Size 32 6 | 7 | //Define RF power value 8 | #define P0dBm 0 9 | #define Pm6dBm 1 10 | #define Pm12dBm 2 11 | #define Pm18dBm 3 12 | 13 | //#define RF rate 14 | #define R2mbps 0 15 | #define R1mbps 1 16 | #define R250kbps 3 17 | 18 | 19 | 20 | void RX_Mode(void); 21 | void TX_Mode(void); 22 | void nRF24L01_TxPacket(unsigned char * tx_buf); 23 | unsigned char nRF24L01_RxPacket(unsigned char* rx_buf); 24 | void nRF24L01_HW_Init(void); 25 | void nRF24L01_Init_Soft(void); 26 | unsigned char SPI_RD_Reg(unsigned char reg); 27 | unsigned char SPI_WR_Reg(unsigned char reg, unsigned char value); 28 | void nRF24L01_Delay_us(unsigned long n); 29 | void nRF24L01_SPI_NSS_L(void); 30 | void nRF24L01_SPI_NSS_H(void); 31 | void nRF24L01_CE_L(void); 32 | void nRF24L01_CE_H(void); 33 | 34 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/readme.txt: -------------------------------------------------------------------------------- 1 | /** 2 | @page GPIO_IOToggle GPIO IO Toggle example 3 | 4 | @verbatim 5 | ******************** (C) COPYRIGHT 2011 STMicroelectronics ******************* 6 | * @file IO_Toggle/readme.txt 7 | * @author MCD Application Team 8 | * @version V1.0.0 9 | * @date 19-September-2011 10 | * @brief Description of the GPIO IO Toggle 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 toggle the GPIO pins connected on AHB bus. 24 | 25 | PD12, PD13, PD14 and PD15 (configured in output pushpull mode) toggles in a forever loop. 26 | - Set PD12, PD13, PD14 and PD15 by setting corresponding bits in BSRRL register 27 | - Reset PD12, PD13, PD14 and PD15 by setting corresponding bits in BSRRH register 28 | 29 | In this example, HCLK is configured at 168 MHz. 30 | 31 | @par Directory contents 32 | 33 | - IO_Toggle/stm32f4xx_conf.h Library Configuration file 34 | - IO_Toggle/stm32f4xx_it.c Interrupt handlers 35 | - IO_Toggle/stm32f4xx_it.h Interrupt handlers header file 36 | - IO_Toggle/main.c Main program 37 | - IO_Toggle/system_stm32f4xx.c STM32F4xx system source file 38 | 39 | @par Hardware and Software environment 40 | 41 | - This example runs on STM32F4xx Devices Revision A. 42 | 43 | - This example has been tested with STM32F4-Discovery (MB997) RevA and can be 44 | easily tailored to any other development board 45 | 46 | - STM32F4-Discovery 47 | - LED4, LED3, LED5 and LED6 are connected respectively to PD.12, PD.13, PD.14 and PD.15. 48 | 49 | 50 | @par How to use it ? 51 | 52 | In order to make the program work, you must do the following : 53 | 54 | + EWARM 55 | - Open the IO_Toggle.eww workspace 56 | - Rebuild all files: Project->Rebuild all 57 | - Load project image: Project->Debug 58 | - Run program: Debug->Go(F5) 59 | 60 | + MDK-ARM 61 | - Open the IO_Toggle.uvproj project 62 | - Rebuild all files: Project->Rebuild all target files 63 | - Load project image: Debug->Start/Stop Debug Session 64 | - Run program: Debug->Run (F5) 65 | 66 | + TASKING 67 | - Open TASKING toolchain. 68 | - Click on File->Import, select General->'Existing Projects into Workspace' 69 | and then click "Next". 70 | - Browse to TASKING workspace directory and select the project "IO_Toggle" 71 | - Rebuild all project files: Select the project in the "Project explorer" 72 | window then click on Project->build project menu. 73 | - Run program: Select the project in the "Project explorer" window then click 74 | Run->Debug (F11) 75 | 76 | + TrueSTUDIO 77 | - Open the TrueSTUDIO toolchain. 78 | - Click on File->Switch Workspace->Other and browse to TrueSTUDIO workspace 79 | directory. 80 | - Click on File->Import, select General->'Existing Projects into Workspace' 81 | and then click "Next". 82 | - Browse to the TrueSTUDIO workspace directory and select the project "IO_Toggle" 83 | - Rebuild all project files: Select the project in the "Project explorer" 84 | window then click on Project->build project menu. 85 | - Run program: Select the project in the "Project explorer" window then click 86 | Run->Debug (F11) 87 | 88 | 89 | 90 | *

© COPYRIGHT 2011 STMicroelectronics

91 | */ 92 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file Examples/GPIOToggle/stm32f10x_conf.h 4 | * @author MCD Application Team 5 | * @version V1.0.0 6 | * @date 09/13/2010 7 | * @brief Library configuration file. 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 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F10x_CONF_H 23 | #define __STM32F10x_CONF_H 24 | 25 | /* Includes ------------------------------------------------------------------*/ 26 | /* Uncomment the line below to enable peripheral header file inclusion */ 27 | /* #include "stm32f10x_adc.h" */ 28 | /* #include "stm32f10x_bkp.h" */ 29 | /* #include "stm32f10x_can.h" */ 30 | /* #include "stm32f10x_cec.h" */ 31 | /* #include "stm32f10x_crc.h" */ 32 | /* #include "stm32f10x_dac.h" */ 33 | /* #include "stm32f10x_dbgmcu.h" */ 34 | /* #include "stm32f10x_dma.h" */ 35 | #include "stm32f10x_exti.h" 36 | /* #include "stm32f10x_flash.h" */ 37 | /* #include "stm32f10x_fsmc.h" */ 38 | #include "stm32f10x_gpio.h" 39 | /* #include "stm32f10x_i2c.h" */ 40 | /* #include "stm32f10x_iwdg.h" */ 41 | /* #include "stm32f10x_pwr.h" */ 42 | #include "stm32f10x_rcc.h" 43 | /* #include "stm32f10x_rtc.h" */ 44 | /* #include "stm32f10x_sdio.h" */ 45 | /* #include "stm32f10x_spi.h" */ 46 | /* #include "stm32f10x_tim.h" */ 47 | #include "stm32f10x_usart.h" 48 | /* #include "stm32f10x_wwdg.h" */ 49 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 50 | 51 | /* Exported types ------------------------------------------------------------*/ 52 | /* Exported constants --------------------------------------------------------*/ 53 | /* Uncomment the line below to expanse the "assert_param" macro in the 54 | Standard Peripheral Library drivers code */ 55 | /* #define USE_FULL_ASSERT 1 */ 56 | 57 | /* Exported macro ------------------------------------------------------------*/ 58 | #ifdef USE_FULL_ASSERT 59 | 60 | /** 61 | * @brief The assert_param macro is used for function's parameters check. 62 | * @param expr: If expr is false, it calls assert_failed function 63 | * which reports the name of the source file and the source 64 | * line number of the call that failed. 65 | * If expr is true, it returns no value. 66 | * @retval None 67 | */ 68 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 69 | /* Exported functions ------------------------------------------------------- */ 70 | void assert_failed(uint8_t* file, uint32_t line); 71 | #else 72 | #define assert_param(expr) ((void)0) 73 | #endif /* USE_FULL_ASSERT */ 74 | 75 | #endif /* __STM32F10x_CONF_H */ 76 | 77 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/ 78 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIOToggle/stm32f10x_it.h 4 | * @author MCD Application Team 5 | * @version V.0.0 6 | * @date 09/13/2010 7 | * @brief This file contains the headers of the interrupt handlers. 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 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F10x_IT_H 23 | #define __STM32F10x_IT_H 24 | 25 | /* Includes ------------------------------------------------------------------*/ 26 | #include "stm32f10x.h" 27 | 28 | /* Exported types ------------------------------------------------------------*/ 29 | /* Exported constants --------------------------------------------------------*/ 30 | /* Exported macro ------------------------------------------------------------*/ 31 | /* Exported functions ------------------------------------------------------- */ 32 | 33 | void NMI_Handler(void); 34 | void HardFault_Handler(void); 35 | void MemManage_Handler(void); 36 | void BusFault_Handler(void); 37 | void UsageFault_Handler(void); 38 | void SVC_Handler(void); 39 | void DebugMon_Handler(void); 40 | void PendSV_Handler(void); 41 | void SysTick_Handler(void); 42 | 43 | #endif /* __STM32F10x_IT_H */ 44 | 45 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/ 46 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/stm32f4xx_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file IO_Toggle/stm32f4xx_conf.h 4 | * @author MCD Application Team 5 | * @version V1.0.0 6 | * @date 19-September-2011 7 | * @brief Library configuration file. 8 | ****************************************************************************** 9 | * @attention 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 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F4xx_CONF_H 24 | #define __STM32F4xx_CONF_H 25 | 26 | #if defined (HSE_VALUE) 27 | /* Redefine the HSE value; it's equal to 8 MHz on the STM32F4-DISCOVERY Kit */ 28 | #undef HSE_VALUE 29 | #define HSE_VALUE ((uint32_t)8000000) 30 | #endif /* HSE_VALUE */ 31 | 32 | /* Includes ------------------------------------------------------------------*/ 33 | /* Uncomment the line below to enable peripheral header file inclusion */ 34 | #include "stm32f4xx_adc.h" 35 | #include "stm32f4xx_can.h" 36 | #include "stm32f4xx_crc.h" 37 | #include "stm32f4xx_cryp.h" 38 | #include "stm32f4xx_dac.h" 39 | #include "stm32f4xx_dbgmcu.h" 40 | #include "stm32f4xx_dcmi.h" 41 | #include "stm32f4xx_dma.h" 42 | #include "stm32f4xx_exti.h" 43 | #include "stm32f4xx_flash.h" 44 | #include "stm32f4xx_fsmc.h" 45 | #include "stm32f4xx_hash.h" 46 | #include "stm32f4xx_gpio.h" 47 | #include "stm32f4xx_i2c.h" 48 | #include "stm32f4xx_iwdg.h" 49 | #include "stm32f4xx_pwr.h" 50 | #include "stm32f4xx_rcc.h" 51 | #include "stm32f4xx_rng.h" 52 | #include "stm32f4xx_rtc.h" 53 | #include "stm32f4xx_sdio.h" 54 | #include "stm32f4xx_spi.h" 55 | #include "stm32f4xx_syscfg.h" 56 | #include "stm32f4xx_tim.h" 57 | #include "stm32f4xx_usart.h" 58 | #include "stm32f4xx_wwdg.h" 59 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 60 | 61 | /* Exported types ------------------------------------------------------------*/ 62 | /* Exported constants --------------------------------------------------------*/ 63 | 64 | /* If an external clock source is used, then the value of the following define 65 | should be set to the value of the external clock source, else, if no external 66 | clock is used, keep this define commented */ 67 | /*#define I2S_EXTERNAL_CLOCK_VAL 12288000 */ /* Value of the external clock in Hz */ 68 | 69 | 70 | /* Uncomment the line below to expanse the "assert_param" macro in the 71 | Standard Peripheral Library drivers code */ 72 | /* #define USE_FULL_ASSERT 1 */ 73 | 74 | /* Exported macro ------------------------------------------------------------*/ 75 | #ifdef USE_FULL_ASSERT 76 | 77 | /** 78 | * @brief The assert_param macro is used for function's parameters check. 79 | * @param expr: If expr is false, it calls assert_failed function 80 | * which reports the name of the source file and the source 81 | * line number of the call that failed. 82 | * If expr is true, it returns no value. 83 | * @retval None 84 | */ 85 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 86 | /* Exported functions ------------------------------------------------------- */ 87 | void assert_failed(uint8_t* file, uint32_t line); 88 | #else 89 | #define assert_param(expr) ((void)0) 90 | #endif /* USE_FULL_ASSERT */ 91 | 92 | #endif /* __STM32F4xx_CONF_H */ 93 | 94 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 95 | -------------------------------------------------------------------------------- /Project/SPI_RF_Master/stm32f4xx_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f4xx_it.h 4 | * @author MCD Application Team 5 | * @version V1.0.0 6 | * @date 19-September-2011 7 | * @brief This file contains the headers of the interrupt handlers. 8 | ****************************************************************************** 9 | * @attention 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 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F4xx_IT_H 24 | #define __STM32F4xx_IT_H 25 | 26 | #ifdef __cplusplus 27 | extern "C" { 28 | #endif 29 | 30 | /* Includes ------------------------------------------------------------------*/ 31 | #include "stm32f4xx.h" 32 | 33 | /* Exported types ------------------------------------------------------------*/ 34 | /* Exported constants --------------------------------------------------------*/ 35 | /* Exported macro ------------------------------------------------------------*/ 36 | /* Exported functions ------------------------------------------------------- */ 37 | 38 | void NMI_Handler(void); 39 | void HardFault_Handler(void); 40 | void MemManage_Handler(void); 41 | void BusFault_Handler(void); 42 | void UsageFault_Handler(void); 43 | void SVC_Handler(void); 44 | void DebugMon_Handler(void); 45 | void PendSV_Handler(void); 46 | void SysTick_Handler(void); 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif /* __STM32F4xx_IT_H */ 53 | 54 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 55 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | stm32_nrf24l01 2 | ============== 3 | 4 | stm32 rf with nrf24l01 5 | -------------------------------------------------------------------------------- /Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/Release_Notes.html -------------------------------------------------------------------------------- /_htmresc/CMSIS_Logo_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/_htmresc/CMSIS_Logo_Final.jpg -------------------------------------------------------------------------------- /_htmresc/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/_htmresc/Thumbs.db -------------------------------------------------------------------------------- /_htmresc/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/_htmresc/logo.bmp -------------------------------------------------------------------------------- /stm32f10x_an3268_fw.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letanphuc/stm32_nrf24l01/565209e8479a94df0af6fb298c011c795ccae190/stm32f10x_an3268_fw.chm --------------------------------------------------------------------------------