【E220】基于STM32的DM码识别(用的dmlib库)

2021-08-16 21:18:19      索炜达电子      731     

项目编号:E220

文件大小:77M

源码说明:带中文注释

开发环境:C编译器

简要概述:

基于stm32的dm码识别,用的dmlib库。

【E220】基于STM32的DM码识别(用的dmlib库)

软件

keil5

使用说明

  1. 基于OV2640摄像头进行dm的识别

  2. 由于满像素需要处理的数据量太大影响速度,所以将摄像头输出像素改小。

文件列表:

目录│文件列表:

 └ stm32h743-HAL-DMlib-ov2640

    │ keilkilll.bat

    │ STM32_H743_M核心板-原理图-1909M.PDF

    ├ CORE

    │  │ cmsis_armcc.h

    │  │ cmsis_armclang.h

    │  │ cmsis_armclang_ltm.h

    │  │ cmsis_compiler.h

    │  │ cmsis_gcc.h

    │  │ cmsis_iccarm.h

    │  │ cmsis_version.h

    │  │ core_armv81mml.h

    │  │ core_armv8mbl.h

    │  │ core_armv8mml.h

    │  │ core_cm0.h

    │  │ core_cm0plus.h

    │  │ core_cm1.h

    │  │ core_cm23.h

    │  │ core_cm3.h

    │  │ core_cm33.h

    │  │ core_cm35p.h

    │  │ core_cm4.h

    │  │ core_cm7.h

    │  │ core_sc000.h

    │  │ core_sc300.h

    │  │ mpu_armv7.h

    │  │ mpu_armv8.h

    │  │ startup_stm32h743xx.s

    │  └ tz_context.h

    ├ HALLIB

    │  ├ CMSIS

    │  │  │ LICENSE.txt

    │  │  ├ Core

    │  │  │  ├ Include

    │  │  │  │  │ cmsis_armcc.h

    │  │  │  │  │ cmsis_armclang.h

    │  │  │  │  │ cmsis_armclang_ltm.h

    │  │  │  │  │ cmsis_compiler.h

    │  │  │  │  │ cmsis_gcc.h

    │  │  │  │  │ cmsis_iccarm.h

    │  │  │  │  │ cmsis_version.h

    │  │  │  │  │ core_armv81mml.h

    │  │  │  │  │ core_armv8mbl.h

    │  │  │  │  │ core_armv8mml.h

    │  │  │  │  │ core_cm0.h

    │  │  │  │  │ core_cm0plus.h

    │  │  │  │  │ core_cm1.h

    │  │  │  │  │ core_cm23.h

    │  │  │  │  │ core_cm3.h

    │  │  │  │  │ core_cm33.h

    │  │  │  │  │ core_cm35p.h

    │  │  │  │  │ core_cm4.h

    │  │  │  │  │ core_cm7.h

    │  │  │  │  │ core_sc000.h

    │  │  │  │  │ core_sc300.h

    │  │  │  │  │ mpu_armv7.h

    │  │  │  │  │ mpu_armv8.h

    │  │  │  │  └ tz_context.h

    │  │  │  └ Template

    │  │  │     └ ARMv8-M

    │  │  │        │ main_s.c

    │  │  │        └ tz_context.c

    │  │  ├ Core_A

    │  │  │  ├ Include

    │  │  │  │  │ cmsis_armcc.h

    │  │  │  │  │ cmsis_armclang.h

    │  │  │  │  │ cmsis_compiler.h

    │  │  │  │  │ cmsis_cp15.h

    │  │  │  │  │ cmsis_gcc.h

    │  │  │  │  │ cmsis_iccarm.h

    │  │  │  │  │ core_ca.h

    │  │  │  │  └ irq_ctrl.h

    │  │  │  └ Source

    │  │  │     └ irq_ctrl_gic.c

    │  │  ├ Device

    │  │  │  └ ST

    │  │  │     └ STM32H7xx

    │  │  │        ├ Include

    │  │  │        │  │ stm32h723xx.h

    │  │  │        │  │ stm32h725xx.h

    │  │  │        │  │ stm32h730xx.h

    │  │  │        │  │ stm32h730xxq.h

    │  │  │        │  │ stm32h733xx.h

    │  │  │        │  │ stm32h735xx.h

    │  │  │        │  │ stm32h742xx.h

    │  │  │        │  │ stm32h743xx.h

    │  │  │        │  │ stm32h745xx.h

    │  │  │        │  │ stm32h747xx.h

    │  │  │        │  │ stm32h750xx.h

    │  │  │        │  │ stm32h753xx.h

    │  │  │        │  │ stm32h755xx.h

    │  │  │        │  │ stm32h757xx.h

    │  │  │        │  │ stm32h7a3xx.h

    │  │  │        │  │ stm32h7a3xxq.h

    │  │  │        │  │ stm32h7b0xx.h

    │  │  │        │  │ stm32h7b0xxq.h

    │  │  │        │  │ stm32h7b3xx.h

    │  │  │        │  │ stm32h7b3xxq.h

    │  │  │        │  │ stm32h7xx.h

    │  │  │        │  └ system_stm32h7xx.h

    │  │  │        └ Source

    │  │  │           └ Templates

    │  │  │              │ system_stm32h7xx.c

    │  │  │              │ system_stm32h7xx_dualcore_bootcm4_cm7gated.c

    │  │  │              │ system_stm32h7xx_dualcore_bootcm7_cm4gated.c

    │  │  │              │ system_stm32h7xx_dualcore_boot_cm4_cm7.c

    │  │  │              │ system_stm32h7xx_singlecore.c

    │  │  │              ├ arm

    │  │  │              │  │ startup_stm32h723xx.s

    │  │  │              │  │ startup_stm32h725xx.s

    │  │  │              │  │ startup_stm32h730xx.s

    │  │  │              │  │ startup_stm32h730xxq.s

    │  │  │              │  │ startup_stm32h733xx.s

    │  │  │              │  │ startup_stm32h735xx.s

    │  │  │              │  │ startup_stm32h742xx.s

    │  │  │              │  │ startup_stm32h743xx.s

    │  │  │              │  │ startup_stm32h745xx.s

    │  │  │              │  │ startup_stm32h747xx.s

    │  │  │              │  │ startup_stm32h750xx.s

    │  │  │              │  │ startup_stm32h753xx.s

    │  │  │              │  │ startup_stm32h755xx.s

    │  │  │              │  │ startup_stm32h757xx.s

    │  │  │              │  │ startup_stm32h7a3xx.s

    │  │  │              │  │ startup_stm32h7a3xxq.s

    │  │  │              │  │ startup_stm32h7b0xx.s

    │  │  │              │  │ startup_stm32h7b0xxq.s

    │  │  │              │  │ startup_stm32h7b3xx.s

    │  │  │              │  └ startup_stm32h7b3xxq.s

    │  │  │              ├ gcc

    │  │  │              │  │ startup_stm32h723xx.s

    │  │  │              │  │ startup_stm32h725xx.s

    │  │  │              │  │ startup_stm32h730xx.s

    │  │  │              │  │ startup_stm32h730xxq.s

    │  │  │              │  │ startup_stm32h733xx.s

    │  │  │              │  │ startup_stm32h735xx.s

    │  │  │              │  │ startup_stm32h742xx.s

    │  │  │              │  │ startup_stm32h743xx.s

    │  │  │              │  │ startup_stm32h745xx.s

    │  │  │              │  │ startup_stm32h747xx.s

    │  │  │              │  │ startup_stm32h750xx.s

    │  │  │              │  │ startup_stm32h753xx.s

    │  │  │              │  │ startup_stm32h755xx.s

    │  │  │              │  │ startup_stm32h757xx.s

    │  │  │              │  │ startup_stm32h7a3xx.s

    │  │  │              │  │ startup_stm32h7a3xxq.s

    │  │  │              │  │ startup_stm32h7b0xx.s

    │  │  │              │  │ startup_stm32h7b0xxq.s

    │  │  │              │  │ startup_stm32h7b3xx.s

    │  │  │              │  └ startup_stm32h7b3xxq.s

    │  │  │              └ iar

    │  │  │                 │ startup_stm32h723xx.s

    │  │  │                 │ startup_stm32h725xx.s

    │  │  │                 │ startup_stm32h730xx.s

    │  │  │                 │ startup_stm32h730xxq.s

    │  │  │                 │ startup_stm32h733xx.s

    │  │  │                 │ startup_stm32h735xx.s

    │  │  │                 │ startup_stm32h742xx.s

    │  │  │                 │ startup_stm32h743xx.s

    │  │  │                 │ startup_stm32h745xx.s

    │  │  │                 │ startup_stm32h747xx.s

    │  │  │                 │ startup_stm32h750xx.s

    │  │  │                 │ startup_stm32h753xx.s

    │  │  │                 │ startup_stm32h755xx.s

    │  │  │                 │ startup_stm32h757xx.s

    │  │  │                 │ startup_stm32h7a3xx.s

    │  │  │                 │ startup_stm32h7a3xxq.s

    │  │  │                 │ startup_stm32h7b0xx.s

    │  │  │                 │ startup_stm32h7b0xxq.s

    │  │  │                 │ startup_stm32h7b3xx.s

    │  │  │                 │ startup_stm32h7b3xxq.s

    │  │  │                 └ linker

    │  │  │                    │ stm32h723xe_axisram.icf

    │  │  │                    │ stm32h723xe_dtcmram.icf

    │  │  │                    │ stm32h723xe_flash.icf

    │  │  │                    │ stm32h723xe_flash_rw_ahbsram.icf

    │  │  │                    │ stm32h723xe_flash_rw_axisram.icf

    │  │  │                    │ stm32h723xe_flash_rw_sram1.icf

    │  │  │                    │ stm32h723xe_flash_rw_sram2.icf

    │  │  │                    │ stm32h723xe_sram1.icf

TAGDM码
  • 3 次
  • 1 分