【E2174】OpenMV人脸识别与STM32红外检测代码

2021-11-06 16:48:37      索炜达电子      520     

项目编号:E2174

文件大小:1.79M

源码说明:带中文注释

开发环境:C编译器

简要概述:

目录│文件列表:

 └ face_recognitation_stm32-main

    │ README.md

    └ 最终程序

       │ keilkill.bat

       │ README.TXT

       ├ inc

       │  │ misc.h

       │  │ RTE_Components.h

       │  │ stm32f10x_adc.h

       │  │ stm32f10x_bkp.h

       │  │ stm32f10x_can.h

       │  │ stm32f10x_cec.h

       │  │ stm32f10x_conf.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

       ├ OBJ

       │  │ button.crf

       │  │ button.d

       │  │ button.o

       │  │ delay.crf

       │  │ delay.d

       │  │ delay.o

       │  │ led.crf

       │  │ led.d

       │  │ led.o

       │  │ misc.crf

       │  │ misc.d

       │  │ misc.o

       │  │ mlx90614.crf

       │  │ mlx90614.d

       │  │ mlx90614.o

       │  │ oled.crf

       │  │ oled.d

       │  │ oled.o

       │  │ startup_stm32f10x_hd.d

       │  │ startup_stm32f10x_hd.lst

       │  │ startup_stm32f10x_hd.o

       │  │ stm32f10x_gpio.crf

       │  │ stm32f10x_gpio.d

       │  │ stm32f10x_gpio.o

       │  │ stm32f10x_rcc.crf

       │  │ stm32f10x_rcc.d

       │  │ stm32f10x_rcc.o

       │  │ stm32f10x_tim.crf

       │  │ stm32f10x_tim.d

       │  │ stm32f10x_tim.o

       │  │ stm32f10x_usart.crf

       │  │ stm32f10x_usart.d

       │  │ stm32f10x_usart.o

       │  │ sys.crf

       │  │ sys.d

       │  │ sys.o

       │  │ test.axf

       │  │ test.build_log.htm

       │  │ test.crf

       │  │ test.d

       │  │ test.hex

       │  │ test.htm

       │  │ test.lnp

       │  │ test.map

       │  │ test.o

       │  │ test.sct

       │  │ test_sct.Bak

       │  │ test_Target 1.dep

       │  │ timer.crf

       │  │ timer.d

       │  │ timer.o

       │  │ usart.crf

       │  │ usart.d

       │  │ usart.o

       │  │ warning.crf

       │  │ warning.d

       │  └ warning.o

       ├ 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

       ├ SYSTEM

       │  │ readme.txt

       │  ├ delay

       │  │  │ delay.c

       │  │  └ delay.h

       │  ├ LED

       │  │  │ led.c

       │  │  └ led.h

       │  ├ mlx90614

       │  │  │ mlx90614.c

       │  │  │ mlx90614.h

       │  │  │ stm32f10x_gpio.h

       │  │  └ stm32f10x_rcc.h

       │  ├ OLED

       │  │  │ oled.c

       │  │  │ oled.h

       │  │  └ oledfont.h

       │  ├ stm32f10x_gpio

       │  │  │ stm32f10x_gpio.c

       │  │  │ stm32f10x_gpio.h

       │  │  └ stm32f10x_rcc.h

       │  ├ stm32f10x_rcc

       │  │  │ stm32f10x_rcc.c

       │  │  └ stm32f10x_rcc.h

       │  ├ sys

       │  │  │ core_cm3.h

       │  │  │ stm32f10x.h

       │  │  │ sys.c

       │  │  │ sys.h

       │  │  └ system_stm32f10x.h

       │  ├ TIMER

       │  │  │ timer.c

       │  │  └ timer.h

       │  └ usart

       │     │ usart.c

       │     └ usart.h

       ├ USER

       │  │ JLinkLog.txt

       │  │ JLinkSettings.ini

       │  │ mlx90614.h

       │  │ startup_stm32f10x_hd.s

       │  │ test.c

       │  │ test.uvguix.Administrator

       │  │ test.uvguix.bo

       │  │ test.uvguix.XKS

       │  │ test.uvguix_bo.bak

       │  │ test.uvoptx

       │  │ test.uvprojx

       │  │ test_Target 1.dep

       │  │ test_uvoptx.bak

       │  │ test_uvprojx.bak

       │  └ DebugConfig

       │     └ Target_1_STM32F103ZE_1.0.0.dbgconf

       └ user_defined

          │ button.c

          │ button.h

          │ time.c

          │ time.h

          │ warning.c

          └ warning.h

TAGOpenMV
  • 10 次
  • 1 分