【E1436】Dbus通信协议STM32端实现

2021-10-09 09:53:53      索炜达电子      646     

项目编号:E1436

文件大小:9M

源码说明:带中文注释

开发环境:C编译器

简要概述:

Dbus通信协议STM32端实现

目录│文件列表:

 └ STM32-Dbus

    └ STM32-Dbus

       │ 8266.txt

       │ dbus移植.rar

       ├ dbus

       │  │ keilkilll.bat

       │  │ readme.txt

       │  │ temp.txt

       │  ├ CORE

       │  │  │ core_cm4.h

       │  │  │ core_cm4_simd.h

       │  │  │ core_cmFunc.h

       │  │  │ core_cmInstr.h

       │  │  └ startup_stm32f40_41xxx.s

       │  ├ FWLIB

       │  │  └ STM32F4xx_StdPeriph_Driver

       │  │     ├ inc

       │  │     │  │ misc.h

       │  │     │  │ stm32f4xx_adc.h

       │  │     │  │ stm32f4xx_can.h

       │  │     │  │ stm32f4xx_crc.h

       │  │     │  │ stm32f4xx_cryp.h

       │  │     │  │ stm32f4xx_dac.h

       │  │     │  │ stm32f4xx_dbgmcu.h

       │  │     │  │ stm32f4xx_dcmi.h

       │  │     │  │ stm32f4xx_dma.h

       │  │     │  │ stm32f4xx_dma2d.h

       │  │     │  │ stm32f4xx_exti.h

       │  │     │  │ stm32f4xx_flash.h

       │  │     │  │ stm32f4xx_flash_ramfunc.h

       │  │     │  │ stm32f4xx_fmc.h

       │  │     │  │ stm32f4xx_fsmc.h

       │  │     │  │ stm32f4xx_gpio.h

       │  │     │  │ stm32f4xx_hash.h

       │  │     │  │ stm32f4xx_i2c.h

       │  │     │  │ stm32f4xx_iwdg.h

       │  │     │  │ stm32f4xx_ltdc.h

       │  │     │  │ stm32f4xx_pwr.h

       │  │     │  │ stm32f4xx_rcc.h

       │  │     │  │ stm32f4xx_rng.h

       │  │     │  │ stm32f4xx_rtc.h

       │  │     │  │ stm32f4xx_sai.h

       │  │     │  │ stm32f4xx_sdio.h

       │  │     │  │ stm32f4xx_spi.h

       │  │     │  │ stm32f4xx_syscfg.h

       │  │     │  │ stm32f4xx_tim.h

       │  │     │  │ stm32f4xx_usart.h

       │  │     │  └ stm32f4xx_wwdg.h

       │  │     └ src

       │  │        │ misc.c

       │  │        │ stm32f4xx_adc.c

       │  │        │ stm32f4xx_can.c

       │  │        │ stm32f4xx_crc.c

       │  │        │ stm32f4xx_cryp.c

       │  │        │ stm32f4xx_cryp_aes.c

       │  │        │ stm32f4xx_cryp_des.c

       │  │        │ stm32f4xx_cryp_tdes.c

       │  │        │ stm32f4xx_dac.c

       │  │        │ stm32f4xx_dbgmcu.c

       │  │        │ stm32f4xx_dcmi.c

       │  │        │ stm32f4xx_dma.c

       │  │        │ stm32f4xx_dma2d.c

       │  │        │ stm32f4xx_exti.c

       │  │        │ stm32f4xx_flash.c

       │  │        │ stm32f4xx_flash_ramfunc.c

       │  │        │ stm32f4xx_fmc.c

       │  │        │ stm32f4xx_fsmc.c

       │  │        │ stm32f4xx_gpio.c

       │  │        │ stm32f4xx_hash.c

       │  │        │ stm32f4xx_hash_md5.c

       │  │        │ stm32f4xx_hash_sha1.c

       │  │        │ stm32f4xx_i2c.c

       │  │        │ stm32f4xx_iwdg.c

       │  │        │ stm32f4xx_ltdc.c

       │  │        │ stm32f4xx_pwr.c

       │  │        │ stm32f4xx_rcc.c

       │  │        │ stm32f4xx_rng.c

       │  │        │ stm32f4xx_rtc.c

       │  │        │ stm32f4xx_sai.c

       │  │        │ stm32f4xx_sdio.c

       │  │        │ stm32f4xx_spi.c

       │  │        │ stm32f4xx_syscfg.c

       │  │        │ stm32f4xx_tim.c

       │  │        │ stm32f4xx_usart.c

       │  │        └ stm32f4xx_wwdg.c

       │  ├ HARDWARE

       │  │  ├ ADC

       │  │  │  │ adc.c

       │  │  │  └ adc.h

       │  │  ├ BEEP

       │  │  │  │ beep.c

       │  │  │  └ beep.h

       │  │  ├ IO

       │  │  │  │ io.c

       │  │  │  └ io.h

       │  │  ├ LED

       │  │  │  │ led.c

       │  │  │  └ led.h

       │  │  ├ MODBUS

       │  │  │  │ modbus.h

       │  │  │  └ modus.c

       │  │  ├ SPI

       │  │  │  │ spi.c

       │  │  │  └ spi.h

       │  │  ├ TIMER7

       │  │  │  │ timer.c

       │  │  │  └ timer.h

       │  │  ├ USART2

       │  │  │  │ usart2.c

       │  │  │  └ usart2.h

       │  │  ├ USART3

       │  │  │  │ usart3.c

       │  │  │  └ usart3.h

       │  │  ├ USART6

       │  │  │  │ usart6.c

       │  │  │  └ usart6.h

       │  │  └ W25QXX

       │  │     │ w25qxx.c

       │  │     └ w25qxx.h

       │  ├ OBJ

       │  │  │ adc.crf

       │  │  │ adc.d

       │  │  │ adc.o

       │  │  │ beep.crf

       │  │  │ beep.d

       │  │  │ beep.o

       │  │  │ bsp.crf

       │  │  │ bsp.d

       │  │  │ bsp.o

       │  │  │ cpu_a.d

       │  │  │ cpu_a.lst

       │  │  │ cpu_a.o

       │  │  │ cpu_c.crf

       │  │  │ cpu_c.d

       │  │  │ cpu_c.o

       │  │  │ cpu_core.crf

       │  │  │ cpu_core.d

       │  │  │ cpu_core.o

       │  │  │ dbus.crf

       │  │  │ dbus.d

       │  │  │ dbus.o

       │  │  │ delay.crf

       │  │  │ delay.d

       │  │  │ delay.o

       │  │  │ ExtDll.iex

       │  │  │ io.crf

       │  │  │ io.d

       │  │  │ io.o

       │  │  │ led.crf

       │  │  │ led.d

       │  │  │ led.o

       │  │  │ lib_ascii.crf

       │  │  │ lib_ascii.d

       │  │  │ lib_ascii.o

       │  │  │ lib_math.crf

       │  │  │ lib_math.d

       │  │  │ lib_math.o

       │  │  │ lib_mem.crf

       │  │  │ lib_mem.d

       │  │  │ lib_mem.o

       │  │  │ lib_mem_a.d

       │  │  │ lib_mem_a.lst

       │  │  │ lib_mem_a.o

       │  │  │ lib_str.crf

       │  │  │ lib_str.d

       │  │  │ lib_str.o

       │  │  │ main.crf

       │  │  │ main.d

       │  │  │ main.o

       │  │  │ misc.crf

       │  │  │ os_tmr.o

       │  │  │ os_var.crf

       │  │  │ os_var.d

       │  │  │ os_var.o

       │  │  │ spi.crf

       │  │  │ spi.d

       │  │  │ spi.o

       │  │  │ startup_stm32f40_41xxx.d

       │  │  │ startup_stm32f40_41xxx.lst

       │  │  │ startup_stm32f40_41xxx.o

       │  │  │ stm32f4xx_adc.crf

       │  │  │ stm32f4xx_adc.d

       │  │  │ stm32f4xx_adc.o

       │  │  │ stm32f4xx_fsmc.crf

       │  │  │ stm32f4xx_fsmc.d

       │  │  │ stm32f4xx_fsmc.o

       │  │  │ stm32f4xx_gpio.crf

       │  │  │ stm32f4xx_gpio.d

       │  │  │ stm32f4xx_gpio.o

       │  │  │ stm32f4xx_it.crf

       │  │  │ stm32f4xx_it.d

       │  │  │ stm32f4xx_it.o

       │  │  │ stm32f4xx_rcc.crf

       │  │  │ stm32f4xx_rcc.d

       │  │  │ stm32f4xx_rcc.o

       │  │  │ stm32f4xx_spi.crf

       │  │  │ stm32f4xx_spi.d

       │  │  │ stm32f4xx_spi.o

       │  │  │ stm32f4xx_syscfg.crf

       │  │  │ w25qxx.d

       │  │  └ w25qxx.o

       │  ├ SYSTEM

       │  │  ├ delay

       │  │  │  │ delay.c

       │  │  │  └ delay.h

       │  │  ├ sys

       │  │  │  │ sys.c

       │  │  │  └ sys.h

       │  │  └ usart

       │  │     │ usart.c

       │  │     └ usart.h

       │  ├ UCOSIII

       │  │  ├ uC-CPU

       │  │  │  │ cpu_core.c

       │  │  │  │ cpu_core.h

       │  │  │  │ cpu_def.h

       │  │  │  └ ARM-Cortex-M4

       │  │  │     ├ GNU

       │  │  │     │  │ cpu.h

       │  │  │     │  │ cpu_a.s

       │  │  │     │  └ cpu_c.c

       │  │  │     ├ IAR

       │  │  │     │  │ cpu.h

       │  │  │     │  │ cpu_a.asm

       │  │  │     │  └ cpu_c.c

       │  │  │     └ RealView

       │  │  │        │ cpu.h

       │  │  │        │ cpu_a.asm

       │  │  │        └ cpu_c.c

       │  │  ├ uC-LIB

       │  │  │  │ lib_ascii.c

       │  │  │  │ lib_ascii.h

       │  │  │  │ lib_def.h

       │  │  │  │ lib_math.c

       │  │  │  │ lib_math.h

       │  │  │  │ lib_mem.c

       │  │  │  │ lib_mem.h

       │  │  │  │ lib_str.c

       │  │  │  │ lib_str.h

       │  │  │  └ Ports

       │  │  │     └ ARM-Cortex-M4

       │  │  │        ├ GNU

       │  │  │        │  └ lib_mem_a.s

       │  │  │        ├ IAR

       │  │  │        │  └ lib_mem_a.asm

       │  │  │        └ RealView

       │  │  │           └ lib_mem_a.asm

       │  │  ├ uCOS-III

       │  │  │  ├ Ports

       │  │  │  │  └ ARM-Cortex-M4

       │  │  │  │     └ Generic

       │  │  │  │        ├ GNU

       │  │  │  │        │  │ os_cpu.h

       │  │  │  │        │  │ os_cpu_a.S

       │  │  │  │        │  │ os_cpu_c.c

       │  │  │  │        │  └ _sgbak

       │  │  │  │        │     │ os_cpu.h.1149602.3.2013-09-20.15-22-32.5330

       │  │  │  │        │     │ os_cpu_a.S.1141355.1.2013-09-20.15-22-32.5140

       │  │  │  │        │     └ os_cpu_c.c.1149601.3.2013-09-20.15-22-32.5250

       │  │  │  │        ├ IAR

       │  │  │  │        │  │ os_cpu.h

       │  │  │  │        │  │ os_cpu_a.asm

       │  │  │  │        │  └ os_cpu_c.c

       │  │  │  │        └ RealView

       │  │  │  │           │ os_cpu.h

       │  │  │  │           │ os_cpu_a.asm

       │  │  │  │           └ os_cpu_c.c

       │  │  │  └ Source

       │  │  │     │ os.h

       │  │  │     │ os_q.c

       │  │  │     │ os_sem.c

       │  │  │     │ os_stat.c

       │  │  │     │ os_task.c

       │  │  │     │ os_tick.c

       │  │  │     │ os_time.c

       │  │  │     │ os_tmr.c

       │  │  │     │ os_type.h

       │  │  │     └ os_var.c

       │  │  ├ UCOS_BSP

       │  │  │  │ bsp.c

       │  │  │  └ bsp.h

       │  │  └ uCOS_CONFIG

       │  │     │ app_cfg.h

       │  │     │ cpu_cfg.h

       │  │     │ includes.h

       │  │     │ lib_cfg.h

       │  │     │ os_app_hooks.c

       │  │     │ os_app_hooks.h

       │  │     │ os_cfg.h

       │  │     └ os_cfg_app.h

       │  └ USER

       │     │ dbus.c

       │     │ Template.uvprojx

       │     │ wifi.c

       │     ├ DebugConfig

       │     │  │ Dbus_STM32F407ZG.dbgconf

       │     │  └ Template_STM32F407ZG.dbgconf

       │     └ History

       │        └ modbus_slave.~(1).h.Zip

       ├ dbus-lib

       │  │ dbus.uvguix.Administrator

       │  │ dbus.uvoptx

       │  │ dbus.uvprojx

       │  ├ dbus

       │  │  │ dbus.c

       │  │  └ dbus.h

       │  ├ DebugConfig

       │  │  └ Target_1_STM32F407ZETx.dbgconf

       │  ├ Listings

       │  │  └ dbus.map

       │  └ Objects

       │     │ ArInp.Scr

       │     │ dbus.build_log.htm

       │     │ dbus.crf

       │     │ dbus.d

       │     │ dbus.lib

       │     │ dbus.lnp

       │     │ dbus.o

       │     │ dbus.sct

       │     └ dbus_Target 1.dep

       └ dbus移植

          │ dbus.h

          │ dbus.lib

          └ 移植.c

TAGDbus通信协议
  • 7 次
  • 1 分