实例介绍
舵机电机驱动测试程序-K60 十分好用 开来看看
【实例截图】
【核心代码】
-K60-DEMOK
├── 06-伺服器S-D05模块(PWM)-修改底层
│ ├── build
│ │ ├── config files
│ │ │ ├── 128KB_Pflash_128KB_Dflash.icf
│ │ │ ├── 128KB_Pflash.icf
│ │ │ ├── 128KB_Ram.icf
│ │ │ ├── 256KB_Pflash_256KB_Dflash.icf
│ │ │ ├── 256KB_Pflash.icf
│ │ │ ├── 32KB_Ram.icf
│ │ │ ├── 512KB_Pflash.icf
│ │ │ ├── 64KB_Pflash_64KB_Dflash.icf
│ │ │ ├── 64KB_Ram.icf
│ │ │ ├── fire_RAM_K60N512.icf
│ │ │ └── fire_ROM_K60N512.icf
│ │ ├── gpio_demo
│ │ │ ├── fire_gpio_demo.dep
│ │ │ ├── fire_gpio_demo.ewd
│ │ │ └── fire_gpio_demo.ewp
│ │ └── iar.h
│ ├── DEMOK_Kinetis_PWM_Example.dep
│ ├── DEMOK_Kinetis_PWM_Example.ewd
│ ├── DEMOK_Kinetis_PWM_Example.ewp
│ ├── DEMOK_Kinetis_PWM_Example.eww
│ ├── src
│ │ ├── common
│ │ │ ├── alloc.c
│ │ │ ├── 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.c
│ │ │ ├── stdlib.h
│ │ │ ├── uif.c
│ │ │ └── uif.h
│ │ ├── cpu
│ │ │ ├── arm_cm4.c
│ │ │ ├── arm_cm4.h
│ │ │ ├── crt0.s
│ │ │ ├── cw_crt0.s
│ │ │ ├── dma_channels.h
│ │ │ ├── headers
│ │ │ │ ├── MK10DZ10.h
│ │ │ │ ├── MK20DZ10.h
│ │ │ │ ├── MK30DZ10.h
│ │ │ │ ├── MK40DZ10.h
│ │ │ │ ├── MK50DZ10.h
│ │ │ │ ├── MK51DZ10.h
│ │ │ │ ├── MK52DZ10.h
│ │ │ │ ├── MK53DZ10.h
│ │ │ │ └── MK60DZ10.h
│ │ │ ├── start.c
│ │ │ ├── start.h
│ │ │ ├── sysinit.c
│ │ │ ├── sysinit.h
│ │ │ ├── vectors.c
│ │ │ └── vectors.h
│ │ ├── drivers
│ │ │ ├── adc
│ │ │ │ ├── adc.c
│ │ │ │ ├── adc_cfg.h
│ │ │ │ └── adc.h
│ │ │ ├── adc16
│ │ │ │ ├── adc16.c
│ │ │ │ └── adc16.h
│ │ │ ├── delay
│ │ │ │ ├── delay.c
│ │ │ │ └── delay.h
│ │ │ ├── dma
│ │ │ │ ├── dma.c
│ │ │ │ └── dma.h
│ │ │ ├── drivers_cfg.h
│ │ │ ├── enet
│ │ │ │ ├── enet.c
│ │ │ │ ├── enet.h
│ │ │ │ ├── eth.h
│ │ │ │ ├── eth_phy.c
│ │ │ │ ├── eth_phy.h
│ │ │ │ ├── mii.c
│ │ │ │ ├── mii.h
│ │ │ │ ├── nbuf.c
│ │ │ │ └── nbuf.h
│ │ │ ├── exti
│ │ │ │ ├── exti.c
│ │ │ │ └── exti.h
│ │ │ ├── FTM
│ │ │ │ ├── FTM.c
│ │ │ │ └── FTM.h
│ │ │ ├── gpio
│ │ │ │ ├── gpio.c
│ │ │ │ ├── gpio_cfg.h
│ │ │ │ └── gpio.h
│ │ │ ├── lptmr
│ │ │ │ ├── lptmr.c
│ │ │ │ └── lptmr.h
│ │ │ ├── mcg
│ │ │ │ ├── Fire_kinetis_MCG_CFG.h
│ │ │ │ ├── mcg.c
│ │ │ │ ├── mcg_cfg.h
│ │ │ │ └── mcg.h
│ │ │ ├── PIT
│ │ │ │ ├── PIT.c
│ │ │ │ └── PIT.h
│ │ │ ├── pmc
│ │ │ │ ├── pmc.c
│ │ │ │ └── pmc.h
│ │ │ ├── rtc
│ │ │ │ ├── rtc.c
│ │ │ │ └── rtc.h
│ │ │ ├── sccb
│ │ │ │ ├── sccb.c
│ │ │ │ ├── sccb.c.bak
│ │ │ │ ├── sccb.h
│ │ │ │ └── sccb.h.bak
│ │ │ ├── uart
│ │ │ │ ├── uart.c
│ │ │ │ └── uart.h
│ │ │ └── wdog
│ │ │ ├── wdog.c
│ │ │ └── wdog.h
│ │ ├── LIB
│ │ │ ├── CMSIS
│ │ │ │ ├── arm_common_tables.h
│ │ │ │ ├── arm_math.h
│ │ │ │ ├── core_cm0.h
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── core_cm4.h
│ │ │ │ ├── core_cm4_simd.h
│ │ │ │ ├── core_cmFunc.h
│ │ │ │ ├── core_cmInstr.h
│ │ │ │ └── iar_cortexM4l_math.a
│ │ │ └── FatFs
│ │ │ ├── 00readme.txt
│ │ │ ├── diskio.c
│ │ │ ├── diskio.h
│ │ │ ├── ff.c
│ │ │ ├── ffconf.h
│ │ │ ├── ff.h
│ │ │ ├── integer.h
│ │ │ └── option
│ │ │ ├── cc932.c
│ │ │ ├── cc936.c
│ │ │ ├── cc949.c
│ │ │ ├── cc950.c
│ │ │ ├── ccsbcs.c
│ │ │ └── syscall.c
│ │ ├── platforms
│ │ │ ├── k40_tower.h
│ │ │ ├── k53_tower.h
│ │ │ ├── k60_fire.h
│ │ │ └── k60_tower.h
│ │ ├── projects
│ │ │ ├── DEMOK_Kinetis_demo_Example
│ │ │ │ ├── isr.c
│ │ │ │ └── main.c
│ │ │ ├── include.h
│ │ │ └── isr.h
│ │ └── uCOS-II
│ │ ├── App
│ │ │ ├── app.c
│ │ │ ├── app.h
│ │ │ ├── app_hooks.c
│ │ │ ├── BSP.c
│ │ │ ├── BSP.h
│ │ │ └── CFG
│ │ │ ├── app_cfg.h
│ │ │ └── os_cfg.h
│ │ ├── Ports
│ │ │ ├── os_cpu_a.asm
│ │ │ ├── os_cpu_c.c
│ │ │ ├── os_cpu.h
│ │ │ └── os_dbg.c
│ │ └── Source
│ │ ├── os_core.c
│ │ ├── os_flag.c
│ │ ├── os_mbox.c
│ │ ├── os_mem.c
│ │ ├── os_mutex.c
│ │ ├── os_q.c
│ │ ├── os_sem.c
│ │ ├── os_task.c
│ │ ├── os_time.c
│ │ ├── os_tmr.c
│ │ └── ucos_ii.h
│ └── 删除临时文件.bat
└── 07-BTS7960电机驱动模块(PWM)-修改底层
├── build
│ ├── config files
│ │ ├── 128KB_Pflash_128KB_Dflash.icf
│ │ ├── 128KB_Pflash.icf
│ │ ├── 128KB_Ram.icf
│ │ ├── 256KB_Pflash_256KB_Dflash.icf
│ │ ├── 256KB_Pflash.icf
│ │ ├── 32KB_Ram.icf
│ │ ├── 512KB_Pflash.icf
│ │ ├── 64KB_Pflash_64KB_Dflash.icf
│ │ ├── 64KB_Ram.icf
│ │ ├── fire_RAM_K60N512.icf
│ │ └── fire_ROM_K60N512.icf
│ ├── gpio_demo
│ │ ├── fire_gpio_demo.dep
│ │ ├── fire_gpio_demo.ewd
│ │ └── fire_gpio_demo.ewp
│ └── iar.h
├── DEMOK_Kinetis_PWM_Example.dep
├── DEMOK_Kinetis_PWM_Example.ewd
├── DEMOK_Kinetis_PWM_Example.ewp
├── DEMOK_Kinetis_PWM_Example.eww
├── src
│ ├── common
│ │ ├── alloc.c
│ │ ├── 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.c
│ │ ├── stdlib.h
│ │ ├── uif.c
│ │ └── uif.h
│ ├── cpu
│ │ ├── arm_cm4.c
│ │ ├── arm_cm4.h
│ │ ├── crt0.s
│ │ ├── cw_crt0.s
│ │ ├── dma_channels.h
│ │ ├── headers
│ │ │ ├── MK10DZ10.h
│ │ │ ├── MK20DZ10.h
│ │ │ ├── MK30DZ10.h
│ │ │ ├── MK40DZ10.h
│ │ │ ├── MK50DZ10.h
│ │ │ ├── MK51DZ10.h
│ │ │ ├── MK52DZ10.h
│ │ │ ├── MK53DZ10.h
│ │ │ └── MK60DZ10.h
│ │ ├── start.c
│ │ ├── start.h
│ │ ├── sysinit.c
│ │ ├── sysinit.h
│ │ ├── vectors.c
│ │ └── vectors.h
│ ├── drivers
│ │ ├── adc
│ │ │ ├── adc.c
│ │ │ ├── adc_cfg.h
│ │ │ └── adc.h
│ │ ├── adc16
│ │ │ ├── adc16.c
│ │ │ └── adc16.h
│ │ ├── delay
│ │ │ ├── delay.c
│ │ │ └── delay.h
│ │ ├── dma
│ │ │ ├── dma.c
│ │ │ └── dma.h
│ │ ├── drivers_cfg.h
│ │ ├── enet
│ │ │ ├── enet.c
│ │ │ ├── enet.h
│ │ │ ├── eth.h
│ │ │ ├── eth_phy.c
│ │ │ ├── eth_phy.h
│ │ │ ├── mii.c
│ │ │ ├── mii.h
│ │ │ ├── nbuf.c
│ │ │ └── nbuf.h
│ │ ├── exti
│ │ │ ├── exti.c
│ │ │ └── exti.h
│ │ ├── FTM
│ │ │ ├── FTM.c
│ │ │ └── FTM.h
│ │ ├── gpio
│ │ │ ├── gpio.c
│ │ │ ├── gpio_cfg.h
│ │ │ └── gpio.h
│ │ ├── lptmr
│ │ │ ├── lptmr.c
│ │ │ └── lptmr.h
│ │ ├── mcg
│ │ │ ├── Fire_kinetis_MCG_CFG.h
│ │ │ ├── mcg.c
│ │ │ ├── mcg_cfg.h
│ │ │ └── mcg.h
│ │ ├── PIT
│ │ │ ├── PIT.c
│ │ │ └── PIT.h
│ │ ├── pmc
│ │ │ ├── pmc.c
│ │ │ └── pmc.h
│ │ ├── rtc
│ │ │ ├── rtc.c
│ │ │ └── rtc.h
│ │ ├── sccb
│ │ │ ├── sccb.c
│ │ │ ├── sccb.c.bak
│ │ │ ├── sccb.h
│ │ │ └── sccb.h.bak
│ │ ├── uart
│ │ │ ├── uart.c
│ │ │ └── uart.h
│ │ └── wdog
│ │ ├── wdog.c
│ │ └── wdog.h
│ ├── LIB
│ │ ├── CMSIS
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm4_simd.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ └── iar_cortexM4l_math.a
│ │ └── FatFs
│ │ ├── 00readme.txt
│ │ ├── diskio.c
│ │ ├── diskio.h
│ │ ├── ff.c
│ │ ├── ffconf.h
│ │ ├── ff.h
│ │ ├── integer.h
│ │ └── option
│ │ ├── cc932.c
│ │ ├── cc936.c
│ │ ├── cc949.c
│ │ ├── cc950.c
│ │ ├── ccsbcs.c
│ │ └── syscall.c
│ ├── platforms
│ │ ├── k40_tower.h
│ │ ├── k53_tower.h
│ │ ├── k60_fire.h
│ │ └── k60_tower.h
│ ├── projects
│ │ ├── DEMOK_Kinetis_demo_Example
│ │ │ ├── isr.c
│ │ │ └── main.c
│ │ ├── include.h
│ │ └── isr.h
│ └── uCOS-II
│ ├── App
│ │ ├── app.c
│ │ ├── app.h
│ │ ├── app_hooks.c
│ │ ├── BSP.c
│ │ ├── BSP.h
│ │ └── CFG
│ │ ├── app_cfg.h
│ │ └── os_cfg.h
│ ├── Ports
│ │ ├── os_cpu_a.asm
│ │ ├── os_cpu_c.c
│ │ ├── os_cpu.h
│ │ └── os_dbg.c
│ └── Source
│ ├── os_core.c
│ ├── os_flag.c
│ ├── os_mbox.c
│ ├── os_mem.c
│ ├── os_mutex.c
│ ├── os_q.c
│ ├── os_sem.c
│ ├── os_task.c
│ ├── os_time.c
│ ├── os_tmr.c
│ └── ucos_ii.h
└── 删除临时文件.bat
74 directories, 310 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论