实例介绍
这个是官方下载的KEAZ128的库文件,看目前飞卡的比赛很多用KEA的,但是又没有对应的SDK生成,找到这个也很方便开发者开发
【实例截图】
【核心代码】
KEA128
└── TRK-KEA128
├── build
│ └── iar
│ └── KEA128
│ ├── config files
│ │ ├── KE0x_Flash_128K.icf
│ │ ├── KE0x_Flash_32K.icf
│ │ ├── KE0x_Flash_64K_bootloaderApp.icf
│ │ ├── KE0x_Flash_64K_EEPROM_256.icf
│ │ ├── KE0x_Flash_64K_FlashConfig.icf
│ │ ├── KE0x_Flash_64K.icf
│ │ ├── KE0x_RAM_16KB.icf
│ │ └── KE0x_RAM_4KB.icf
│ ├── iar.h
│ └── template
│ ├── Debug
│ │ ├── Exe
│ │ │ └── template.sim
│ │ └── Obj
│ │ ├── acmp.pbi
│ │ ├── acmp.pbi.cout
│ │ ├── arm_cm0.pbi
│ │ ├── arm_cm0.pbi.cout
│ │ ├── assert.pbi
│ │ ├── assert.pbi.cout
│ │ ├── crc.pbi
│ │ ├── crc.pbi.cout
│ │ ├── i2c.pbi
│ │ ├── i2c.pbi.cout
│ │ ├── ics.pbi
│ │ ├── ics.pbi.cout
│ │ ├── io.pbi
│ │ ├── io.pbi.cout
│ │ ├── memtest.pbi
│ │ ├── memtest.pbi.cout
│ │ ├── mscan.pbi
│ │ ├── mscan.pbi.cout
│ │ ├── pit.pbi
│ │ ├── pit.pbi.cout
│ │ ├── printf.pbi
│ │ ├── printf.pbi.cout
│ │ ├── pwt.pbi
│ │ ├── pwt.pbi.cout
│ │ ├── queue.pbi
│ │ ├── queue.pbi.cout
│ │ ├── rtc.pbi
│ │ ├── rtc.pbi.cout
│ │ ├── start.pbi
│ │ ├── start.pbi.cout
│ │ ├── startup.pbi
│ │ ├── startup.pbi.cout
│ │ ├── sysinit.pbi
│ │ ├── sysinit.pbi.cout
│ │ ├── systick.pbi
│ │ ├── systick.pbi.cout
│ │ ├── uif.pbi
│ │ ├── uif.pbi.cout
│ │ ├── vectors.pbi
│ │ └── vectors.pbi.cout
│ ├── settings
│ │ ├── template.crun
│ │ ├── template.dbgdt
│ │ ├── template.Debug.cspy.bat
│ │ ├── template.dni
│ │ ├── template.wsdt
│ │ └── template.wspos
│ ├── template.dep
│ ├── template.ewd
│ ├── template.ewp
│ ├── template.ewt
│ └── template.eww
└── src
├── common
│ ├── assert.c
│ ├── assert.h
│ ├── common.h
│ ├── io.c
│ ├── io.h
│ ├── memtest.c
│ ├── memtest.h
│ ├── printf.c
│ ├── queue.c
│ ├── queue.h
│ ├── startup.c
│ ├── startup.h
│ ├── stdlib.h
│ ├── typedef.h
│ ├── uif.c
│ └── uif.h
├── cpu
│ ├── arm_cm0.c
│ ├── arm_cm0.h
│ ├── crt0.s
│ ├── headers
│ │ ├── derivative.h
│ │ └── SKEAZ1284.h
│ ├── start.c
│ ├── start.h
│ ├── sysinit.c
│ ├── sysinit.h
│ ├── system_SKEAZ1284.h
│ ├── system_SKEAZN642.h
│ ├── system_SKEAZN84.h
│ ├── systick.c
│ ├── systick.h
│ ├── vectors.c
│ └── vectors.h
├── drivers
│ ├── acmp
│ │ ├── acmp.c
│ │ └── acmp.h
│ ├── adc
│ │ ├── adc.c
│ │ └── adc.h
│ ├── bitband
│ │ └── bitband.h
│ ├── bme
│ │ └── BME.h
│ ├── can
│ │ ├── mscan.c
│ │ └── mscan.h
│ ├── crc
│ │ ├── crc.c
│ │ └── crc.h
│ ├── ftm
│ │ ├── ftm.c
│ │ └── ftm.h
│ ├── gpio
│ │ ├── gpio.c
│ │ └── gpio.h
│ ├── ics
│ │ ├── ics.c
│ │ └── ics.h
│ ├── iic
│ │ ├── i2c.c
│ │ └── i2c.h
│ ├── kbi
│ │ ├── kbi.c
│ │ └── kbi.h
│ ├── nvm
│ │ ├── flash.c
│ │ └── flash.h
│ ├── pit
│ │ ├── pit.c
│ │ └── pit.h
│ ├── PMC
│ │ ├── pmc.c
│ │ └── pmc.h
│ ├── pwt
│ │ ├── pwt.c
│ │ └── pwt.h
│ ├── rtc
│ │ ├── rtc.c
│ │ └── rtc.h
│ ├── sim
│ │ ├── sim.c
│ │ └── sim.h
│ ├── spi
│ │ ├── spi.c
│ │ └── spi.h
│ ├── uart
│ │ ├── uart.c
│ │ └── uart.h
│ └── wdog
│ ├── wdog.c
│ └── wdog.h
├── platforms
│ ├── kea128_config.h
│ ├── kea64_config.h
│ └── kea8_config.h
└── projects
└── KEA128
└── tempalte
├── isr.h
└── platinum.c
39 directories, 136 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论