实例介绍
移植Freemodbus V1.5.0基于TI DK-TM4C129X 开发板。开发环境Keil MDK5.10
【实例截图】
【核心代码】
DK-TM4C129X_FreeModbus_Slave
└── TM4C129X
├── clear.bat
├── debug
│ ├── adc.crf
│ ├── adc.d
│ ├── adc.o
│ ├── aes.crf
│ ├── aes.d
│ ├── aes.o
│ ├── can.crf
│ ├── can.d
│ ├── can.o
│ ├── comp.crf
│ ├── comp.d
│ ├── comp.o
│ ├── cpu.crf
│ ├── cpu.d
│ ├── cpu.o
│ ├── crc.crf
│ ├── crc.d
│ ├── crc.o
│ ├── des.crf
│ ├── des.d
│ ├── des.o
│ ├── eeprom.crf
│ ├── eeprom.d
│ ├── eeprom.o
│ ├── emac.crf
│ ├── emac.d
│ ├── emac.o
│ ├── epi.crf
│ ├── epi.d
│ ├── ExtDll.iex
│ ├── flash.crf
│ ├── flash.d
│ ├── flash.o
│ ├── fpu.crf
│ ├── fpu.d
│ ├── fpu.o
│ ├── gpio.crf
│ ├── gpio.d
│ ├── gpio.o
│ ├── hal_interface.crf
│ ├── hal_interface.d
│ ├── hal_interface.o
│ ├── hibernate.crf
│ ├── hibernate.d
│ ├── hibernate.o
│ ├── i2c.crf
│ ├── i2c.d
│ ├── i2c.o
│ ├── interrupt.crf
│ ├── interrupt.d
│ ├── interrupt.o
│ ├── lcd.crf
│ ├── lcd.d
│ ├── lcd.o
│ ├── main.crf
│ ├── main.d
│ ├── main.o
│ ├── mbcrc.crf
│ ├── mbcrc.d
│ ├── mbcrc.o
│ ├── mb.crf
│ ├── mb.d
│ ├── mbfunccoils.crf
│ ├── mbfunccoils.d
│ ├── mbfunccoils.o
│ ├── mbfuncdiag.crf
│ ├── mbfuncdiag.d
│ ├── mbfuncdiag.o
│ ├── mbfuncdisc.crf
│ ├── mbfuncdisc.d
│ ├── mbfuncdisc.o
│ ├── mbfuncholding.crf
│ ├── mbfuncholding.d
│ ├── mbfuncholding.o
│ ├── mbfuncinput.crf
│ ├── mbfuncinput.d
│ ├── mbfuncinput.o
│ ├── mbfuncother.crf
│ ├── mbfuncother.d
│ ├── mbfuncother.o
│ ├── mb.o
│ ├── mbrtu.crf
│ ├── mbrtu.d
│ ├── mbrtu.o
│ ├── mbutils.crf
│ ├── mbutils.d
│ ├── mbutils.o
│ ├── Modbus_Porting.axf
│ ├── Modbus_Porting.build_log.htm
│ ├── Modbus_Porting.htm
│ ├── Modbus_Porting.lnp
│ ├── Modbus_Porting.sct
│ ├── mpu.crf
│ ├── mpu.d
│ ├── mpu.o
│ ├── portevent.crf
│ ├── portevent.d
│ ├── portevent.o
│ ├── portother.crf
│ ├── portother.d
│ ├── portother.o
│ ├── portserial.crf
│ ├── portserial.d
│ ├── portserial.o
│ ├── porttimer.crf
│ ├── porttimer.d
│ ├── porttimer.o
│ ├── pwm.crf
│ ├── pwm.d
│ ├── pwm.o
│ ├── qei.crf
│ ├── qei.d
│ ├── qei.o
│ ├── shamd5.crf
│ ├── shamd5.d
│ ├── shamd5.o
│ ├── ssi.crf
│ ├── ssi.d
│ ├── ssi.o
│ ├── startup_rvmdk.d
│ ├── startup_rvmdk.o
│ ├── sw_crc.crf
│ ├── sw_crc.d
│ ├── sw_crc.o
│ ├── sysctl.crf
│ ├── sysctl.d
│ ├── sysctl.o
│ ├── sysexc.crf
│ ├── sysexc.d
│ ├── sysexc.o
│ ├── systick.crf
│ ├── systick.d
│ ├── systick.o
│ ├── timer.crf
│ ├── timer.d
│ ├── timer.o
│ ├── uart.crf
│ ├── uart.d
│ ├── uart.o
│ ├── udma.crf
│ ├── udma.d
│ ├── udma.o
│ ├── usb.crf
│ ├── usb.d
│ ├── usb.o
│ ├── watchdog.crf
│ ├── watchdog.d
│ └── watchdog.o
├── driverlib
│ ├── adc.c
│ ├── adc.h
│ ├── aes.c
│ ├── aes.h
│ ├── can.c
│ ├── can.h
│ ├── ccs
│ │ ├── Debug
│ │ │ └── driverlib.lib
│ │ └── macros.ini_initial
│ ├── comp.c
│ ├── comp.h
│ ├── cpu.c
│ ├── cpu.h
│ ├── crc.c
│ ├── crc.h
│ ├── debug.h
│ ├── des.c
│ ├── des.h
│ ├── driverlib.ewp
│ ├── driverlib.sgxx
│ ├── driverlib.uvopt
│ ├── driverlib.uvproj
│ ├── eeprom.c
│ ├── eeprom.h
│ ├── emac.c
│ ├── emac.h
│ ├── epi.c
│ ├── epi.h
│ ├── epi_workaround_ccs.s
│ ├── ewarm
│ │ └── Exe
│ │ └── driverlib.a
│ ├── flash.c
│ ├── flash.h
│ ├── fpu.c
│ ├── fpu.h
│ ├── gcc
│ │ └── libdriver.a
│ ├── gpio.c
│ ├── gpio.h
│ ├── hibernate.c
│ ├── hibernate.h
│ ├── i2c.c
│ ├── i2c.h
│ ├── interrupt.c
│ ├── interrupt.h
│ ├── lcd.c
│ ├── lcd.h
│ ├── Makefile
│ ├── mpu.c
│ ├── mpu.h
│ ├── pin_map.h
│ ├── pwm.c
│ ├── pwm.h
│ ├── qei.c
│ ├── qei.h
│ ├── readme.txt
│ ├── rom.h
│ ├── rom_map.h
│ ├── rtos_bindings.h
│ ├── rvmdk
│ │ └── driverlib.lib
│ ├── shamd5.c
│ ├── shamd5.h
│ ├── ssi.c
│ ├── ssi.h
│ ├── sw_crc.c
│ ├── sw_crc.h
│ ├── sysctl.c
│ ├── sysctl.h
│ ├── sysexc.c
│ ├── sysexc.h
│ ├── systick.c
│ ├── systick.h
│ ├── timer.c
│ ├── timer.h
│ ├── uart.c
│ ├── uart.h
│ ├── udma.c
│ ├── udma.h
│ ├── usb.c
│ ├── usb.h
│ ├── watchdog.c
│ └── watchdog.h
├── HAL
│ ├── HAL_Interface.c
│ └── HAL_Interface.h
├── inc
│ ├── asmdefs.h
│ ├── hw_adc.h
│ ├── hw_aes.h
│ ├── hw_can.h
│ ├── hw_ccm.h
│ ├── hw_comp.h
│ ├── hw_des.h
│ ├── hw_eeprom.h
│ ├── hw_emac.h
│ ├── hw_epi.h
│ ├── hw_fan.h
│ ├── hw_flash.h
│ ├── hw_gpio.h
│ ├── hw_hibernate.h
│ ├── hw_i2c.h
│ ├── hw_ints.h
│ ├── hw_lcd.h
│ ├── hw_memmap.h
│ ├── hw_nvic.h
│ ├── hw_pwm.h
│ ├── hw_qei.h
│ ├── hw_shamd5.h
│ ├── hw_ssi.h
│ ├── hw_sysctl.h
│ ├── hw_sysexc.h
│ ├── hw_timer.h
│ ├── hw_types.h
│ ├── hw_uart.h
│ ├── hw_udma.h
│ ├── hw_usb.h
│ ├── hw_watchdog.h
│ ├── inc.sgxx
│ └── tm4c129xnczad.h
├── main.c
├── modbus
│ ├── ascii
│ │ ├── mbascii.c
│ │ └── mbascii.h
│ ├── functions
│ │ ├── mbfunccoils.c
│ │ ├── mbfuncdiag.c
│ │ ├── mbfuncdisc.c
│ │ ├── mbfuncholding.c
│ │ ├── mbfuncinput.c
│ │ ├── mbfuncother.c
│ │ └── mbutils.c
│ ├── include
│ │ ├── mbconfig.h
│ │ ├── mbframe.h
│ │ ├── mbfunc.h
│ │ ├── mb.h
│ │ ├── mbport.h
│ │ ├── mbproto.h
│ │ └── mbutils.h
│ ├── mb.c
│ ├── rtu
│ │ ├── mbcrc.c
│ │ ├── mbcrc.h
│ │ ├── mbrtu.c
│ │ └── mbrtu.h
│ └── tcp
│ ├── mbtcp.c
│ └── mbtcp.h
├── Modbus_Porting.axf
├── Modbus_Porting.build_log.htm
├── Modbus_Porting.htm
├── Modbus_Porting.lnp
├── Modbus_Porting.map
├── Modbus_Porting.sct
├── Modbus_Porting_Target 1.dep
├── Modbus_Porting.uvgui.Administrator
├── Modbus_Porting.uvgui_Administrator.bak
├── Modbus_Porting.uvgui.CH
├── Modbus_Porting.uvgui_CH.bak
├── Modbus_Porting.uvgui.z00308wb
├── Modbus_Porting.uvgui_z00308wb.bak
├── Modbus_Porting.uvopt
├── Modbus_Porting_uvopt.bak
├── Modbus_Porting.uvproj
├── Modbus_Porting_uvproj.bak
├── port
│ ├── portevent.c
│ ├── port.h
│ ├── portother.c
│ ├── portserial.c
│ └── porttimer.c
├── SourceInsight
│ ├── ModbusSlave_TM4C129Xkit.IAB
│ ├── ModbusSlave_TM4C129Xkit.IAD
│ ├── ModbusSlave_TM4C129Xkit.IMB
│ ├── ModbusSlave_TM4C129Xkit.IMD
│ ├── ModbusSlave_TM4C129Xkit.PFI
│ ├── ModbusSlave_TM4C129Xkit.PO
│ ├── ModbusSlave_TM4C129Xkit.PR
│ ├── ModbusSlave_TM4C129Xkit.PRI
│ ├── ModbusSlave_TM4C129Xkit.PS
│ ├── ModbusSlave_TM4C129Xkit.SearchResults
│ └── ModbusSlave_TM4C129Xkit.WK3
├── startup_rvmdk.lst
└── startup_rvmdk.S
19 directories, 322 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论