实例介绍
【实例截图】
【核心代码】
比赛程序
└── 7.14
└── 6.8
└── 新建文件夹
└── LQ_K60FX_MT9V034OK20181113
└── LQ_K60F_Demo
├── Backup (2) of LQ_MK60F.ewp
├── Backup of LQ_MK60F.ewp
├── Debug
│ ├── Exe
│ │ └── c.out
│ ├── List
│ └── Obj
│ ├── 9851.o
│ ├── 9851.pbi
│ ├── 9851.pbi.xcl
│ ├── ADC.o
│ ├── ADC.pbi
│ ├── ADC.pbi.xcl
│ ├── DMA.o
│ ├── DMA.pbi
│ ├── DMA.pbi.xcl
│ ├── EasyTracer.o
│ ├── EasyTracer.pbi
│ ├── EasyTracer.pbi.xcl
│ ├── FTM.o
│ ├── FTM.pbi
│ ├── FTM.pbi.xcl
│ ├── GPIO.o
│ ├── GPIO.pbi
│ ├── GPIO.pbi.xcl
│ ├── I2C.o
│ ├── I2C.pbi
│ ├── I2C.pbi.xcl
│ ├── LQ12864.o
│ ├── LQ12864.pbi
│ ├── LQ12864.pbi.xcl
│ ├── LQMT9V034.o
│ ├── LQMT9V034.pbi
│ ├── LQMT9V034.pbi.xcl
│ ├── LQMT9V034M.o
│ ├── LQMT9V034M.pbi
│ ├── LQMT9V034M.pbi.xcl
│ ├── LQ_MK60F.pbd
│ ├── LQ_MK60F.pbd.browse
│ ├── LQ_MK60F.pbd.linf
│ ├── LQ_MK60F.pbw
│ ├── McNamm_wheel_control.o
│ ├── McNamm_wheel_control.pbi
│ ├── McNamm_wheel_control.pbi.xcl
│ ├── OV7620.o
│ ├── OV7620.pbi
│ ├── OV7620.pbi.xcl
│ ├── PIT.o
│ ├── PIT.pbi
│ ├── PIT.pbi.xcl
│ ├── PLL.o
│ ├── PLL.pbi
│ ├── PLL.pbi.xcl
│ ├── Serial_oscilloscope.o
│ ├── Serial_oscilloscope.pbi
│ ├── Serial_oscilloscope.pbi.xcl
│ ├── UART.o
│ ├── UART.pbi
│ ├── UART.pbi.xcl
│ ├── car__Car_control.o
│ ├── car__Car_control.pbi
│ ├── car__Car_control.pbi.xcl
│ ├── common.o
│ ├── common.pbi
│ ├── common.pbi.xcl
│ ├── crt0.o
│ ├── direction.o
│ ├── direction.pbi
│ ├── direction.pbi.xcl
│ ├── err_calc.pbi.xcl
│ ├── main.o
│ ├── main.pbi
│ ├── main.pbi.xcl
│ ├── openmv.o
│ ├── openmv.pbi
│ ├── openmv.pbi.xcl
│ ├── speed-control.o
│ ├── speed-control.pbi
│ ├── speed-control.pbi.xcl
│ ├── start.o
│ ├── start.pbi
│ ├── start.pbi.xcl
│ ├── var.o
│ ├── var.pbi
│ ├── var.pbi.xcl
│ ├── vectors.o
│ ├── vectors.pbi
│ ├── vectors.pbi.xcl
│ ├── wdog.o
│ ├── wdog.pbi
│ └── wdog.pbi.xcl
├── LQ_MK60F.dep
├── LQ_MK60F.ewd
├── LQ_MK60F.ewp
├── LQ_MK60F.ewt
├── LQ_MK60F_demo.eww
├── settings
│ ├── LQ_MK60F.Debug.cspy.bat
│ ├── LQ_MK60F.Debug.cspy.ps1
│ ├── LQ_MK60F.Debug.driver.xcl
│ ├── LQ_MK60F.Debug.general.xcl
│ ├── LQ_MK60F.crun
│ ├── LQ_MK60F.dbgdt
│ ├── LQ_MK60F.dni
│ ├── LQ_MK60F.dnx
│ ├── LQ_MK60F_Debug.jlink
│ ├── LQ_MK60F_demo.wsdt
│ └── LQ_MK60F_demo.wspos
└── src
├── Includes
│ ├── ADC.h
│ ├── DMA.h
│ ├── FTM.h
│ ├── GPIO.h
│ ├── GPIO_Cfg.h
│ ├── I2C.h
│ ├── LQ12864.c
│ ├── LQ12864.h
│ ├── Lptmr.h
│ ├── PIT.h
│ ├── PLL.h
│ ├── UART.h
│ ├── common.h
│ ├── vectors.h
│ └── wdog.h
├── Libs
│ ├── MK60F15.h
│ ├── core_cm4.h
│ ├── core_cm4_simd.h
│ ├── core_cmFunc.h
│ └── core_cmInstr.h
├── Output
├── Project_Setting
│ ├── Linker_Files
│ │ ├── FlashK66Fxxx256K.board
│ │ ├── K66_Pflash.icf
│ │ ├── MK66FX1M0xxx18_flash.scf
│ │ └── Pflash.icf
│ └── Startup
│ ├── crt0.s
│ └── start.c
├── Source
│ ├── ADC.c
│ ├── DMA.c
│ ├── FTM.c
│ ├── GPIO.c
│ ├── I2C.c
│ ├── Lptmr.c
│ ├── PIT.c
│ ├── PLL.c
│ ├── UART.c
│ ├── Untitled1.c
│ ├── common.c
│ ├── sysinit.c
│ ├── var.c
│ ├── vectors.c
│ └── wdog.c
└── User
├── 9851.c
├── 9851.h
├── EasyTracer.c
├── EasyTracer.h
├── LQ12864.c
├── LQ12864.h
├── LQMT9V034.c
├── LQMT9V034.h
├── LQMT9V034M.a
├── LQMT9V034M.c
├── LQMT9V034M.h
├── McNamm_wheel_control.c
├── McNamm_wheel_control.h
├── OV7620.c
├── OV7620.h
├── Serial_oscilloscope.c
├── Serial_oscilloscope.h
├── car__Car_control.c
├── direction.c
├── direction.h
├── include.h
├── main.c
├── math.h
├── openmv.c
├── speed-control.c
├── speed-control.h
└── var.h
19 directories, 171 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论