├── .gitignore ├── CORE ├── core_cm3.c ├── core_cm3.h └── startup_stm32f10x_md.s ├── FWLIB ├── 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 ├── LICENSE ├── README.md └── USER ├── JLinkLog.txt ├── JLinkSettings.ini ├── RTE ├── _Parking_Lot │ └── RTE_Components.h └── _Target_1 │ └── RTE_Components.h ├── main.c ├── parking lot.map ├── parking lot.plg ├── parking lot.uvguix.zhico ├── parking lot.uvoptx ├── parking lot.uvprojx ├── parking_lot.map ├── startup_stm32f10x_md.lst ├── stm32f10x.h ├── stm32f10x_conf.h ├── stm32f10x_it.c ├── stm32f10x_it.h ├── system_stm32f10x.c └── system_stm32f10x.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/.gitignore -------------------------------------------------------------------------------- /CORE/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/CORE/core_cm3.c -------------------------------------------------------------------------------- /CORE/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/CORE/core_cm3.h -------------------------------------------------------------------------------- /CORE/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/CORE/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /FWLIB/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/misc.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /FWLIB/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /FWLIB/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/misc.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_can.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /FWLIB/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/FWLIB/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/README.md -------------------------------------------------------------------------------- /USER/JLinkLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/JLinkLog.txt -------------------------------------------------------------------------------- /USER/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/JLinkSettings.ini -------------------------------------------------------------------------------- /USER/RTE/_Parking_Lot/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/RTE/_Parking_Lot/RTE_Components.h -------------------------------------------------------------------------------- /USER/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /USER/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | #define USART_BOUND 115200 4 | 5 | 6 | int main(void) 7 | { 8 | while(1); 9 | } 10 | -------------------------------------------------------------------------------- /USER/parking lot.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/parking lot.map -------------------------------------------------------------------------------- /USER/parking lot.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/parking lot.plg -------------------------------------------------------------------------------- /USER/parking lot.uvguix.zhico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/parking lot.uvguix.zhico -------------------------------------------------------------------------------- /USER/parking lot.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/parking lot.uvoptx -------------------------------------------------------------------------------- /USER/parking lot.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/parking lot.uvprojx -------------------------------------------------------------------------------- /USER/parking_lot.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/parking_lot.map -------------------------------------------------------------------------------- /USER/startup_stm32f10x_md.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/startup_stm32f10x_md.lst -------------------------------------------------------------------------------- /USER/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/stm32f10x.h -------------------------------------------------------------------------------- /USER/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/stm32f10x_conf.h -------------------------------------------------------------------------------- /USER/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/stm32f10x_it.c -------------------------------------------------------------------------------- /USER/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/stm32f10x_it.h -------------------------------------------------------------------------------- /USER/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/system_stm32f10x.c -------------------------------------------------------------------------------- /USER/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ez4ZheNg/Smart_ParkingLot/HEAD/USER/system_stm32f10x.h --------------------------------------------------------------------------------