在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例嵌入式开发 → 半导体HC32F460的IAP例程。

半导体HC32F460的IAP例程。

嵌入式开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:11.64M
  • 下载次数:25
  • 浏览次数:612
  • 发布时间:2022-04-06
  • 实例类别:嵌入式开发
  • 发 布 人:printf8000
  • 文件格式:.rar
  • 所需积分:2
 相关标签: HC32 IAP 半导体 32 AP

实例介绍

【实例简介】半导体HC32F460的IAP例程。

这个是小华半导体HC32F460的IAP例程。

【实例截图】

from clipboard

【核心代码】
.
├── hc32f460_iap
│   ├── (EXE)IAP_Demo
│   │   └── IAP_Demo.exe
│   ├── HC32F46X系列IAP快速使用手册.pdf
│   ├── hc32f46x_HB.hex
│   ├── hc32f46x_app
│   │   ├── app
│   │   │   ├── User_Gpio.c
│   │   │   ├── User_Gpio.h
│   │   │   ├── User_Timer.c
│   │   │   └── User_Timer.h
│   │   ├── common
│   │   │   ├── hc32_common.h
│   │   │   ├── hc32_ddl.h
│   │   │   ├── hc32f46x.h
│   │   │   ├── system_hc32f46x.c
│   │   │   └── system_hc32f46x.h
│   │   ├── driver
│   │   │   ├── inc
│   │   │   │   ├── hc32f46x_adc.h
│   │   │   │   ├── hc32f46x_aes.h
│   │   │   │   ├── hc32f46x_can.h
│   │   │   │   ├── hc32f46x_clk.h
│   │   │   │   ├── hc32f46x_cmp.h
│   │   │   │   ├── hc32f46x_crc.h
│   │   │   │   ├── hc32f46x_dcu.h
│   │   │   │   ├── hc32f46x_dmac.h
│   │   │   │   ├── hc32f46x_efm.h
│   │   │   │   ├── hc32f46x_emb.h
│   │   │   │   ├── hc32f46x_event_port.h
│   │   │   │   ├── hc32f46x_exint_nmi_swi.h
│   │   │   │   ├── hc32f46x_gpio.h
│   │   │   │   ├── hc32f46x_hash.h
│   │   │   │   ├── hc32f46x_i2c.h
│   │   │   │   ├── hc32f46x_i2s.h
│   │   │   │   ├── hc32f46x_icg.h
│   │   │   │   ├── hc32f46x_interrupts.h
│   │   │   │   ├── hc32f46x_keyscan.h
│   │   │   │   ├── hc32f46x_mpu.h
│   │   │   │   ├── hc32f46x_ots.h
│   │   │   │   ├── hc32f46x_pwc.h
│   │   │   │   ├── hc32f46x_qspi.h
│   │   │   │   ├── hc32f46x_rmu.h
│   │   │   │   ├── hc32f46x_rtc.h
│   │   │   │   ├── hc32f46x_sdioc.h
│   │   │   │   ├── hc32f46x_spi.h
│   │   │   │   ├── hc32f46x_sram.h
│   │   │   │   ├── hc32f46x_swdt.h
│   │   │   │   ├── hc32f46x_timer0.h
│   │   │   │   ├── hc32f46x_timer4_cnt.h
│   │   │   │   ├── hc32f46x_timer4_emb.h
│   │   │   │   ├── hc32f46x_timer4_oco.h
│   │   │   │   ├── hc32f46x_timer4_pwm.h
│   │   │   │   ├── hc32f46x_timer4_sevt.h
│   │   │   │   ├── hc32f46x_timer6.h
│   │   │   │   ├── hc32f46x_timera.h
│   │   │   │   ├── hc32f46x_trng.h
│   │   │   │   ├── hc32f46x_usart.h
│   │   │   │   ├── hc32f46x_utility.h
│   │   │   │   └── hc32f46x_wdt.h
│   │   │   └── src
│   │   │       ├── hc32f46x_adc.c
│   │   │       ├── hc32f46x_aes.c
│   │   │       ├── hc32f46x_can.c
│   │   │       ├── hc32f46x_clk.c
│   │   │       ├── hc32f46x_cmp.c
│   │   │       ├── hc32f46x_crc.c
│   │   │       ├── hc32f46x_dcu.c
│   │   │       ├── hc32f46x_dmac.c
│   │   │       ├── hc32f46x_efm.c
│   │   │       ├── hc32f46x_emb.c
│   │   │       ├── hc32f46x_event_port.c
│   │   │       ├── hc32f46x_exint_nmi_swi.c
│   │   │       ├── hc32f46x_gpio.c
│   │   │       ├── hc32f46x_hash.c
│   │   │       ├── hc32f46x_i2c.c
│   │   │       ├── hc32f46x_i2s.c
│   │   │       ├── hc32f46x_icg.c
│   │   │       ├── hc32f46x_interrupts.c
│   │   │       ├── hc32f46x_keyscan.c
│   │   │       ├── hc32f46x_mpu.c
│   │   │       ├── hc32f46x_ots.c
│   │   │       ├── hc32f46x_pwc.c
│   │   │       ├── hc32f46x_qspi.c
│   │   │       ├── hc32f46x_rmu.c
│   │   │       ├── hc32f46x_rtc.c
│   │   │       ├── hc32f46x_sdioc.c
│   │   │       ├── hc32f46x_spi.c
│   │   │       ├── hc32f46x_sram.c
│   │   │       ├── hc32f46x_swdt.c
│   │   │       ├── hc32f46x_timer0.c
│   │   │       ├── hc32f46x_timer4_cnt.c
│   │   │       ├── hc32f46x_timer4_emb.c
│   │   │       ├── hc32f46x_timer4_oco.c
│   │   │       ├── hc32f46x_timer4_pwm.c
│   │   │       ├── hc32f46x_timer4_sevt.c
│   │   │       ├── hc32f46x_timer6.c
│   │   │       ├── hc32f46x_timera.c
│   │   │       ├── hc32f46x_trng.c
│   │   │       ├── hc32f46x_usart.c
│   │   │       ├── hc32f46x_utility.c
│   │   │       └── hc32f46x_wdt.c
│   │   ├── midware
│   │   └── project
│   │       ├── EWARM
│   │       │   ├── config
│   │       │   │   ├── HC32F46x.icf
│   │       │   │   ├── HC32F46x_app.icf
│   │       │   │   ├── HDSC_HC32F46x.svd
│   │       │   │   ├── flashloader
│   │       │   │   │   ├── FlashHC32F460_otp.mac
│   │       │   │   │   ├── FlashHC32F460_otp.out
│   │       │   │   │   ├── FlashHC32F46x.flash
│   │       │   │   │   ├── FlashHC32F46x.mac
│   │       │   │   │   ├── FlashHC32F46x.out
│   │       │   │   │   ├── FlashHC32F46x_otp.flash
│   │       │   │   │   └── HC32F46x.board
│   │       │   │   └── reset.mac
│   │       │   ├── hc32f46x_app.dep
│   │       │   ├── hc32f46x_app.ewd
│   │       │   ├── hc32f46x_app.ewp
│   │       │   ├── hc32f46x_app.ewt
│   │       │   ├── hc32f46x_app.eww
│   │       │   ├── output
│   │       │   │   └── release
│   │       │   │       ├── Exe
│   │       │   │       ├── List
│   │       │   │       └── Obj
│   │       │   │           ├── hc32f46x_app.pbd
│   │       │   │           ├── hc32f46x_app.pbd.browse
│   │       │   │           ├── hc32f46x_app.pbd.linf
│   │       │   │           ├── hc32f46x_gpio.pbi
│   │       │   │           ├── hc32f46x_gpio.pbi.xcl
│   │       │   │           ├── hc32f46x_utility.pbi
│   │       │   │           ├── hc32f46x_utility.pbi.xcl
│   │       │   │           ├── main.pbi
│   │       │   │           ├── main.pbi.xcl
│   │       │   │           ├── system_hc32f46x.pbi
│   │       │   │           └── system_hc32f46x.pbi.xcl
│   │       │   ├── settings
│   │       │   │   ├── ddl_template.wsdt
│   │       │   │   ├── ddl_template.wspos
│   │       │   │   ├── hc32f46x_app.Release.cspy.bat
│   │       │   │   ├── hc32f46x_app.Release.driver.xcl
│   │       │   │   ├── hc32f46x_app.Release.general.xcl
│   │       │   │   ├── hc32f46x_app.crun
│   │       │   │   ├── hc32f46x_app.dbgdt
│   │       │   │   ├── hc32f46x_app.dni
│   │       │   │   ├── hc32f46x_app.wsdt
│   │       │   │   ├── hc32f46x_app.wspos
│   │       │   │   ├── hc32f46x_app_Debug.jlink
│   │       │   │   └── hc32f46x_app_Release.jlink
│   │       │   └── startup_hc32f46x.s
│   │       ├── MDK
│   │       │   ├── EventRecorderStub.scvd
│   │       │   ├── JLinkLog.txt
│   │       │   ├── JLinkSettings.ini
│   │       │   ├── RTE
│   │       │   │   └── _hc32f46x_app_Release
│   │       │   │       └── RTE_Components.h
│   │       │   ├── hc32f46x_app.bin
│   │       │   ├── hc32f46x_app.uvguix.User
│   │       │   ├── hc32f46x_app.uvoptx
│   │       │   ├── hc32f46x_app.uvprojx
│   │       │   ├── output
│   │       │   │   └── release
│   │       │   │       ├── ExtDll.iex
│   │       │   │       ├── hc32f46x_app.axf
│   │       │   │       ├── hc32f46x_app.bin
│   │       │   │       ├── hc32f46x_app.build_log.htm
│   │       │   │       ├── hc32f46x_app.hex
│   │       │   │       ├── hc32f46x_app.lnp
│   │       │   │       ├── hc32f46x_app.map
│   │       │   │       ├── hc32f46x_app.sct
│   │       │   │       ├── hc32f46x_app_hc32f46x_app_Release.dep
│   │       │   │       ├── hc32f46x_app_sct.Bak
│   │       │   │       ├── hc32f46x_gpio.crf
│   │       │   │       ├── hc32f46x_gpio.d
│   │       │   │       ├── hc32f46x_gpio.o
│   │       │   │       ├── hc32f46x_interrupts.crf
│   │       │   │       ├── hc32f46x_interrupts.d
│   │       │   │       ├── hc32f46x_interrupts.o
│   │       │   │       ├── hc32f46x_keyscan.crf
│   │       │   │       ├── hc32f46x_keyscan.d
│   │       │   │       ├── hc32f46x_keyscan.o
│   │       │   │       ├── hc32f46x_timer0.crf
│   │       │   │       ├── hc32f46x_timer0.d
│   │       │   │       ├── hc32f46x_timer0.o
│   │       │   │       ├── hc32f46x_utility.crf
│   │       │   │       ├── hc32f46x_utility.d
│   │       │   │       ├── hc32f46x_utility.o
│   │       │   │       ├── main.crf
│   │       │   │       ├── main.d
│   │       │   │       ├── main.o
│   │       │   │       ├── startup_hc32f46x.d
│   │       │   │       ├── startup_hc32f46x.o
│   │       │   │       ├── system_hc32f46x.crf
│   │       │   │       ├── system_hc32f46x.d
│   │       │   │       ├── system_hc32f46x.o
│   │       │   │       ├── user_gpio.crf
│   │       │   │       ├── user_gpio.d
│   │       │   │       ├── user_gpio.o
│   │       │   │       ├── user_timer.crf
│   │       │   │       ├── user_timer.d
│   │       │   │       └── user_timer.o
│   │       │   └── startup_hc32f46x.s
│   │       ├── Readme.txt
│   │       └── source
│   │           ├── ddl_config.h
│   │           └── main.c
│   ├── hc32f46x_app.hex
│   ├── hc32f46x_boot
│   │   ├── app
│   │   │   └── iap
│   │   │       ├── User_Gpio.c
│   │   │       ├── User_Gpio.h
│   │   │       ├── User_Timer.c
│   │   │       ├── User_Timer.h
│   │   │       ├── iap.c
│   │   │       ├── iap.h
│   │   │       ├── modem.c
│   │   │       └── modem.h
│   │   ├── common
│   │   │   ├── hc32_common.h
│   │   │   ├── hc32f46x.h
│   │   │   ├── hc32f46x_gpio.c
│   │   │   ├── hc32f46x_gpio.h
│   │   │   ├── hc32f46x_icg.c
│   │   │   ├── hc32f46x_icg.h
│   │   │   ├── hc32f46x_interrupts.c
│   │   │   ├── hc32f46x_interrupts.h
│   │   │   ├── hc32f46x_timer0.c
│   │   │   ├── hc32f46x_timer0.h
│   │   │   ├── hc32f46x_utility.c
│   │   │   ├── hc32f46x_utility.h
│   │   │   ├── system_hc32f46x.c
│   │   │   └── system_hc32f46x.h
│   │   ├── driver
│   │   │   ├── basic.c
│   │   │   ├── basic.h
│   │   │   ├── flash.c
│   │   │   ├── flash.h
│   │   │   ├── uart.c
│   │   │   └── uart.h
│   │   ├── midware
│   │   └── project
│   │       ├── EWARM
│   │       │   ├── config
│   │       │   │   ├── HC32F46x.icf
│   │       │   │   ├── HC32F46x_boot.icf
│   │       │   │   ├── HDSC_HC32F46x.svd
│   │       │   │   └── flashloader
│   │       │   │       ├── FlashHC32F46x.flash
│   │       │   │       ├── FlashHC32F46x.mac
│   │       │   │       ├── FlashHC32F46x.out
│   │       │   │       └── HC32F46x.board
│   │       │   ├── hc32f46x_boot.dep
│   │       │   ├── hc32f46x_boot.ewd
│   │       │   ├── hc32f46x_boot.ewp
│   │       │   ├── hc32f46x_boot.ewt
│   │       │   ├── hc32f46x_boot.eww
│   │       │   ├── settings
│   │       │   │   ├── ddl_template.wsdt
│   │       │   │   ├── ddl_template.wspos
│   │       │   │   ├── hc32f46x_boot.Release.cspy.bat
│   │       │   │   ├── hc32f46x_boot.Release.driver.xcl
│   │       │   │   ├── hc32f46x_boot.Release.general.xcl
│   │       │   │   ├── hc32f46x_boot.crun
│   │       │   │   ├── hc32f46x_boot.dbgdt
│   │       │   │   ├── hc32f46x_boot.dni
│   │       │   │   ├── hc32f46x_boot.wsdt
│   │       │   │   ├── hc32f46x_boot.wspos
│   │       │   │   ├── hc32f46x_boot_Debug.jlink
│   │       │   │   └── hc32f46x_boot_Release.jlink
│   │       │   └── startup_hc32f46x.s
│   │       ├── MDK
│   │       │   ├── EventRecorderStub.scvd
│   │       │   ├── JLinkLog.txt
│   │       │   ├── JLinkSettings.ini
│   │       │   ├── RTE
│   │       │   │   └── _hc32f46x_boot_Release
│   │       │   │       └── RTE_Components.h
│   │       │   ├── hc32f46x_boot.uvguix.Michael
│   │       │   ├── hc32f46x_boot.uvguix.User
│   │       │   ├── hc32f46x_boot.uvoptx
│   │       │   ├── hc32f46x_boot.uvprojx
│   │       │   ├── output
│   │       │   │   └── release
│   │       │   │       ├── ExtDll.iex
│   │       │   │       ├── basic.crf
│   │       │   │       ├── basic.d
│   │       │   │       ├── basic.o
│   │       │   │       ├── flash.crf
│   │       │   │       ├── flash.d
│   │       │   │       ├── flash.o
│   │       │   │       ├── hc32f46x_boot.axf
│   │       │   │       ├── hc32f46x_boot.bin
│   │       │   │       ├── hc32f46x_boot.build_log.htm
│   │       │   │       ├── hc32f46x_boot.hex
│   │       │   │       ├── hc32f46x_boot.lnp
│   │       │   │       ├── hc32f46x_boot.map
│   │       │   │       ├── hc32f46x_boot.sct
│   │       │   │       ├── hc32f46x_boot_hc32f46x_boot_Release.dep
│   │       │   │       ├── hc32f46x_boot_sct.Bak
│   │       │   │       ├── hc32f46x_gpio.crf
│   │       │   │       ├── hc32f46x_gpio.d
│   │       │   │       ├── hc32f46x_gpio.o
│   │       │   │       ├── hc32f46x_icg.crf
│   │       │   │       ├── hc32f46x_icg.d
│   │       │   │       ├── hc32f46x_icg.o
│   │       │   │       ├── hc32f46x_interrupts.crf
│   │       │   │       ├── hc32f46x_interrupts.d
│   │       │   │       ├── hc32f46x_interrupts.o
│   │       │   │       ├── hc32f46x_timer0.crf
│   │       │   │       ├── hc32f46x_timer0.d
│   │       │   │       ├── hc32f46x_timer0.o
│   │       │   │       ├── hc32f46x_utility.crf
│   │       │   │       ├── hc32f46x_utility.d
│   │       │   │       ├── hc32f46x_utility.o
│   │       │   │       ├── iap.crf
│   │       │   │       ├── iap.d
│   │       │   │       ├── iap.o
│   │       │   │       ├── main.crf
│   │       │   │       ├── main.d
│   │       │   │       ├── main.o
│   │       │   │       ├── modem.crf
│   │       │   │       ├── modem.d
│   │       │   │       ├── modem.o
│   │       │   │       ├── startup_hc32f46x.d
│   │       │   │       ├── startup_hc32f46x.o
│   │       │   │       ├── system_hc32f46x.crf
│   │       │   │       ├── system_hc32f46x.d
│   │       │   │       ├── system_hc32f46x.o
│   │       │   │       ├── uart.crf
│   │       │   │       ├── uart.d
│   │       │   │       ├── uart.o
│   │       │   │       ├── user_gpio.crf
│   │       │   │       ├── user_gpio.d
│   │       │   │       ├── user_gpio.o
│   │       │   │       ├── user_timer.crf
│   │       │   │       ├── user_timer.d
│   │       │   │       └── user_timer.o
│   │       │   └── startup_hc32f46x.s
│   │       └── source
│   │           └── main.c
│   ├── hc32f46x_boot.hex
│   └── iap_hecheng.hex
└── 半导体HC32F460的IAP例程。.rar

42 directories, 306 files


标签: HC32 IAP 半导体 32 AP

实例下载地址

半导体HC32F460的IAP例程。

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警