【E400】基于STM32的智能车库

2021-08-20 18:51:24      索炜达电子      657     

项目编号:E400

文件大小:38M

源码说明:带中文注释

开发环境:C编译器

简要概述

基于STM32的智能车库

实现功能:刷卡自动停车(步进电机)、拍照、停车路径规划、自动分配停车位、时长收费等

【E400】基于STM32的智能车库

目录│文件列表:

 └ Intelligent_garage_based_on_STM32

    │ .mxproject

    │ common.ftl

    │ GUI.ioc

    │ stm32f4xx_hal_conf_h.ftl

    │ stm32f4xx_hal_conf_h.ftl_save

    ├ Drivers

    │  ├ CMSIS

    │  │  ├ Device

    │  │  │  └ ST

    │  │  │     └ STM32F4xx

    │  │  │        └ Include

    │  │  │           │ stm32f407xx.h

    │  │  │           │ stm32f4xx.h

    │  │  │           └ system_stm32f4xx.h

    │  │  └ Include

    │  │     │ arm_common_tables.h

    │  │     │ arm_const_structs.h

    │  │     │ arm_math.h

    │  │     │ cmsis_armcc.h

    │  │     │ cmsis_armcc_V6.h

    │  │     │ cmsis_gcc.h

    │  │     │ core_cm0.h

    │  │     │ core_cm0plus.h

    │  │     │ core_cm3.h

    │  │     │ core_cm4.h

    │  │     │ core_cm7.h

    │  │     │ core_cmFunc.h

    │  │     │ core_cmInstr.h

    │  │     │ core_cmSimd.h

    │  │     │ core_sc000.h

    │  │     └ core_sc300.h

    │  └ STM32F4xx_HAL_Driver

    │     ├ Inc

    │     │  │ stm32f4xx_hal.h

    │     │  │ stm32f4xx_hal_cortex.h

    │     │  │ stm32f4xx_hal_crc.h

    │     │  │ stm32f4xx_hal_def.h

    │     │  │ stm32f4xx_hal_dma.h

    │     │  │ stm32f4xx_hal_dma_ex.h

    │     │  │ stm32f4xx_hal_flash.h

    │     │  │ stm32f4xx_hal_flash_ex.h

    │     │  │ stm32f4xx_hal_flash_ramfunc.h

    │     │  │ stm32f4xx_hal_gpio.h

    │     │  │ stm32f4xx_hal_gpio_ex.h

    │     │  │ stm32f4xx_hal_pwr.h

    │     │  │ stm32f4xx_hal_pwr_ex.h

    │     │  │ stm32f4xx_hal_rcc.h

    │     │  │ stm32f4xx_hal_rcc_ex.h

    │     │  │ stm32f4xx_hal_rtc.h

    │     │  │ stm32f4xx_hal_rtc_ex.h

    │     │  │ stm32f4xx_hal_sd.h

    │     │  │ stm32f4xx_hal_spi.h

    │     │  │ stm32f4xx_hal_sram.h

    │     │  │ stm32f4xx_hal_tim.h

    │     │  │ stm32f4xx_hal_tim_ex.h

    │     │  │ stm32f4xx_hal_uart.h

    │     │  │ stm32f4xx_ll_fsmc.h

    │     │  │ stm32f4xx_ll_sdmmc.h

    │     │  └ Legacy

    │     │     └ stm32_hal_legacy.h

    │     └ Src

    │        │ stm32f4xx_hal.c

    │        │ stm32f4xx_hal_cortex.c

    │        │ stm32f4xx_hal_crc.c

    │        │ stm32f4xx_hal_dma.c

    │        │ stm32f4xx_hal_dma_ex.c

    │        │ stm32f4xx_hal_flash.c

    │        │ stm32f4xx_hal_flash_ex.c

    │        │ stm32f4xx_hal_flash_ramfunc.c

    │        │ stm32f4xx_hal_gpio.c

    │        │ stm32f4xx_hal_pwr.c

    │        │ stm32f4xx_hal_pwr_ex.c

    │        │ stm32f4xx_hal_rcc.c

    │        │ stm32f4xx_hal_rcc_ex.c

    │        │ stm32f4xx_hal_rtc.c

    │        │ stm32f4xx_hal_rtc_ex.c

    │        │ stm32f4xx_hal_sd.c

    │        │ stm32f4xx_hal_spi.c

    │        │ stm32f4xx_hal_sram.c

    │        │ stm32f4xx_hal_tim.c

    │        │ stm32f4xx_hal_tim_ex.c

    │        │ stm32f4xx_hal_uart.c

    │        │ stm32f4xx_ll_fsmc.c

    │        └ stm32f4xx_ll_sdmmc.c

    ├ emWin522

    │  ├ Config

    │  │  │ GUIConf.c

    │  │  │ GUIConf.h

    │  │  │ GUIDRV_Template.c

    │  │  │ GUIDRV_Template.h

    │  │  │ GUI_X_Touch_Analog.c

    │  │  │ LCDConf_FlexColor_Template.c

    │  │  │ LCDConf_FlexColor_Template.h

    │  │  │ LCDConf_Lin_Template.c

    │  │  └ LCDConf_Lin_Template.h

    │  ├ inc

    │  │  │ BUTTON.h

    │  │  │ BUTTON_Private.h

    │  │  │ CALENDAR.h

    │  │  │ CHECKBOX.h

    │  │  │ CHECKBOX_Private.h

    │  │  │ CHOOSECOLOR.h

    │  │  │ CHOOSEFILE.h

    │  │  │ DIALOG.h

    │  │  │ DIALOG_Intern.h

    │  │  │ DROPDOWN.h

    │  │  │ DROPDOWN_Private.h

    │  │  │ EDIT.h

    │  │  │ EDIT_Private.h

    │  │  │ FRAMEWIN.h

    │  │  │ FRAMEWIN_Private.h

    │  │  │ Global.h

    │  │  │ GRAPH.h

    │  │  │ GRAPH_Private.h

    │  │  │ GUI.h

    │  │  │ GUIDRV_DCache.h

    │  │  │ GUIDRV_DCache_Private.h

    │  │  │ GUIDRV_Dist.h

    │  │  │ GUIDRV_FlexColor.h

    │  │  │ GUIDRV_FlexColor_Private.h

    │  │  │ GUIDRV_Generic.h

    │  │  │ GUIDRV_Lin.h

    │  │  │ GUIDRV_Lin_Opt_16.h

    │  │  │ GUIDRV_Lin_Opt_24.h

    │  │  │ GUIDRV_Lin_Opt_32.h

    │  │  │ GUIDRV_Lin_Opt_8.h

    │  │  │ GUIDRV_Lin_Private.h

    │  │  │ GUIDRV_NoOpt_1_8.h

    │  │  │ GUIDRV_Template.h

    │  │  │ GUIDRV_TemplateI.h

    │  │  │ GUIDRV_TemplateI_Private.h

    │  │  │ GUI_ARRAY.h

    │  │  │ GUI_ARRAY_Private.h

    │  │  │ GUI_BMP_Private.h

    │  │  │ GUI_ConfDefaults.h

    │  │  │ GUI_Debug.h

    │  │  │ GUI_FontIntern.h

    │  │  │ GUI_GIF_Private.h

    │  │  │ GUI_HOOK.h

    │  │  │ GUI_JPEG_Private.h

    │  │  │ GUI_Private.h

    │  │  │ GUI_SetOrientation.h

    │  │  │ GUI_SetOrientationCX.h

    │  │  │ GUI_SPRITE_Private.h

    │  │  │ GUI_Type.h

    │  │  │ GUI_Version.h

    │  │  │ GUI_VNC.h

    │  │  │ HEADER.h

    │  │  │ HEADER_Private.h

    │  │  │ ICONVIEW.h

    │  │  │ ICONVIEW_Private.h

    │  │  │ IMAGE.h

    │  │  │ IMAGE_Private.h

    │  │  │ LCD.h

    │  │  │ LCD_ConfDefaults.h

    │  │  │ LCD_Private.h

    │  │  │ LCD_Protected.h

    │  │  │ LCD_SIM.h

    │  │  │ LISTBOX.h

    │  │  │ LISTBOX_Private.h

    │  │  │ LISTVIEW.h

    │  │  │ LISTVIEW_Private.h

    │  │  │ LISTWHEEL.h

    │  │  │ LISTWHEEL_Private.h

    │  │  │ MENU.h

    │  │  │ MENU_Private.h

    │  │  │ MESSAGEBOX.h

    │  │  │ MULTIEDIT.h

    │  │  │ MULTIPAGE.h

    │  │  │ MULTIPAGE_Private.h

    │  │  │ PROGBAR.h

    │  │  │ PROGBAR_Private.h

    │  │  │ RADIO.h

    │  │  │ RADIO_Private.h

    │  │  │ SCROLLBAR.h

    │  │  │ SCROLLBAR_Private.h

    │  │  │ SLIDER.h

    │  │  │ SLIDER_Private.h

    │  │  │ SPINBOX.h

    │  │  │ SPINBOX_Private.h

    │  │  │ TEXT.h

    │  │  │ TEXT_Private.h

    │  │  │ TREEVIEW.h

    │  │  │ TREEVIEW_Private.h

    │  │  │ WIDGET.h

    │  │  │ WINDOW_Private.h

    │  │  │ WM.h

    │  │  │ WM_GUI.h

    │  │  └ WM_Intern.h

    │  ├ Lib

    │  │  │ MCD-ST Image SW License Agreement V2.pdf

    │  │  │ STemWin522_CM0_GCC.a

    │  │  │ STemWin522_CM0_IAR.a

    │  │  │ STemWin522_CM0_Keil.lib

    │  │  │ STemWin522_CM0_OS_GCC.a

    │  │  │ STemWin522_CM0_OS_IAR.a

    │  │  │ STemWin522_CM0_OS_Keil.lib

    │  │  │ STemWin522_CM3_GCC.a

    │  │  │ STemWin522_CM3_IAR.a

    │  │  │ STemWin522_CM3_Keil.lib

    │  │  │ STemWin522_CM3_OS_GCC.a

    │  │  │ STemWin522_CM3_OS_IAR.a

    │  │  │ STemWin522_CM3_OS_Keil.lib

    │  │  │ STemWin522_CM4_GCC.a

    │  │  │ STemWin522_CM4_IAR.a

    │  │  │ STemWin522_CM4_Keil.lib

    │  │  │ STemWin522_CM4_OS_GCC.a

    │  │  │ STemWin522_CM4_OS_IAR.a

    │  │  └ STemWin522_CM4_OS_Keil.lib

    │  └ OS

    │     │ GUI_X.c

    │     └ GUI_X_FreeRTOS.c

    ├ HARDWARE

    │  ├ bmp

    │  │  │ bsp_bmp.c

    │  │  └ bsp_bmp.h

    │  ├ LCD

    │  │  │ ascii.h

    │  │  │ ILI93xx.c

    │  │  └ ILI93xx.h

    │  ├ OV7725

    │  │  │ ov7725.c

    │  │  │ ov7725.h

    │  │  │ sccb.c

    │  │  └ sccb.h

    │  ├ RC522

    │  │  │ manager.c

    │  │  │ manager.h

    │  │  │ motor.c

    │  │  │ motor.h

    │  │  │ rc522_app.c

    │  │  │ rc522_app.h

    │  │  │ rc522_config.c

    │  │  │ rc522_config.h

    │  │  │ rc522_function.c

    │  │  └ rc522_function.h

    │  ├ TOUCH

    │  │  │ readme.txt

    │  │  │ touch.c

    │  │  └ touch.h

    │  └ W25X16

    │     │ spi_flash.c

    │     └ spi_flash.h

    ├ Inc

    │  │ bsp_driver_sd.h

    │  │ crc.h

    │  │ debug.h

    │  │ fatfs.h

    │  │ ffconf.h

    │  │ fsmc.h

    │  │ gpio.h

    │  │ main.h

    │  │ rtc.h

    │  │ sdio.h

    │  │ spi.h

    │  │ stm32f4xx_hal_conf.h

    │  │ stm32f4xx_hal_conf.h_save

    │  │ stm32f4xx_it.h

    │  │ tim.h

    │  │ tmp

    │  └ usart.h

    ├ MDK-ARM

    │  │ EventRecorderStub.scvd

    │  │ GUI.uvguix.Libunko

    │  │ GUI.uvguix.mcli

    │  │ GUI.uvoptx

    │  │ GUI.uvprojx

    │  │ startup_stm32f407xx.lst

    │  │ startup_stm32f407xx.s

    │  ├ DebugConfig

    │  │  └ GUI_STM32F407VETx.dbgconf

    │  ├ GUI

    │  │  │ 24cxx.d

    │  │  │ bsp_bmp.crf

    │  │  │ bsp_bmp.d

    │  │  │ bsp_bmp.o

    │  │  │ bsp_driver_sd.crf

    │  │  │ bsp_driver_sd.d

    │  │  │ bsp_driver_sd.o

    │  │  │ cc936.crf

    │  │  │ cc936.d

    │  │  │ cc936.o

    │  │  │ cc936_1.crf

    │  │  │ cc936_1.d

    │  │  │ cc936_1.o

    │  │  │ crc.crf

    │  │  │ crc.d

    │  │  │ crc.o

    │  │  │ dcmi.crf

    │  │  │ dcmi.d

    │  │  │ dcmi.o

    │  │  │ diskio.crf

    │  │  │ diskio.d

    │  │  │ diskio.o

TAG智能车库
  • 12 次
  • 1 分