在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Android手机应用开发 → stm32f4五子棋对战

stm32f4五子棋对战

Android手机应用开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:5.44M
  • 下载次数:24
  • 浏览次数:277
  • 发布时间:2021-01-05
  • 实例类别:Android手机应用开发
  • 发 布 人:ice_xizi
  • 文件格式:.rar
  • 所需积分:2
 相关标签: STM32F4 STM32 STM3 五子棋 ST

实例介绍

【实例简介】
【实例截图】

【核心代码】

五子棋对战系统V1.1

├── APP
│   ├── game.c
│   └── game.h
├── FATFS
│   ├── doc
│   │   ├── css_e.css
│   │   ├── css_j.css
│   │   ├── en
│   │   ├── img
│   │   │   ├── app1.c
│   │   │   ├── app2.c
│   │   │   ├── app3.c
│   │   │   ├── app4.c
│   │   │   ├── f1.png
│   │   │   ├── f2.png
│   │   │   ├── f3.png
│   │   │   ├── f4.png
│   │   │   ├── f5.png
│   │   │   ├── f6.png
│   │   │   ├── f7.png
│   │   │   ├── funcs.png
│   │   │   ├── layers.png
│   │   │   ├── layers3.png
│   │   │   ├── modules.png
│   │   │   ├── rwtest.png
│   │   │   ├── rwtest2.png
│   │   │   └── rwtest3.png
│   │   ├── ja
│   │   └── updates.txt
│   ├── exfuns
│   │   ├── exfuns.c
│   │   ├── exfuns.h
│   │   ├── fattester.c
│   │   ├── fattester.h
│   │   └── mycc936.c
│   └── src
│       ├── 00readme.txt
│       ├── diskio.c
│       ├── diskio.h
│       ├── ff.c
│       ├── ff.h
│       ├── ffconf.h
│       ├── integer.h
│       └── option
│           ├── cc932.c
│           ├── cc936.c
│           ├── cc949.c
│           ├── cc950.c
│           ├── ccsbcs.c
│           ├── syscall.c
│           └── unicode.c
├── HARDWARE
│   ├── 24CXX
│   │   ├── 24cxx.c
│   │   ├── 24cxx.h
│   │   ├── myiic.c
│   │   └── myiic.h
│   ├── ADC
│   │   ├── adc.c
│   │   └── adc.h
│   ├── BEEP
│   │   ├── beep.c
│   │   └── beep.h
│   ├── DAC
│   │   ├── dac.c
│   │   └── dac.h
│   ├── DMA
│   │   ├── dma.c
│   │   └── dma.h
│   ├── EXIT
│   │   ├── exit.c
│   │   └── exit.h
│   ├── HC_SR04
│   │   ├── hcsr04.c
│   │   └── hcsr04.h
│   ├── KEY
│   │   ├── key.c
│   │   └── key.h
│   ├── L298N
│   │   ├── l298n.c
│   │   └── l298n.h
│   ├── LED
│   │   ├── led.c
│   │   └── led.h
│   ├── LSENS
│   │   ├── lsens.c
│   │   └── lsens.h
│   ├── PID
│   │   ├── pid.c
│   │   └── pid.h
│   ├── PWM
│   │   ├── pwm.c
│   │   └── pwm.h
│   ├── RNG
│   │   ├── rng.c
│   │   └── rng.h
│   ├── SDIO
│   │   ├── sdio_sdcard.c
│   │   └── sdio_sdcard.h
│   ├── SENSOR_trailing
│   │   ├── trailing.c
│   │   └── trailing.h
│   ├── TFTLCD
│   │   ├── font.h
│   │   ├── tftlcd.c
│   │   └── tftlcd.h
│   ├── TIMER
│   │   ├── timer.c
│   │   └── timer.h
│   ├── TOUCH
│   │   ├── ctiic.c
│   │   ├── ctiic.h
│   │   ├── ft5206.c
│   │   ├── ft5206.h
│   │   ├── gt9147.c
│   │   ├── gt9147.h
│   │   ├── ott2001a.c
│   │   ├── ott2001a.h
│   │   ├── touch.c
│   │   └── touch.h
│   ├── TPAD
│   │   ├── tpad.c
│   │   └── tpad.h
│   ├── W25QXX
│   │   ├── spi.c
│   │   ├── spi.h
│   │   ├── w25qxx.c
│   │   └── w25qxx.h
│   └── WDG
│       ├── wdg.c
│       └── wdg.h
├── MALLOC
│   ├── malloc.c
│   └── malloc.h
├── OBJ
│   ├── 24cxx.crf
│   ├── 24cxx.d
│   ├── 24cxx.o
│   ├── ExtDll.iex
│   ├── adc.crf
│   ├── adc.d
│   ├── adc.o
│   ├── beep.crf
│   ├── beep.d
│   ├── beep.o
│   ├── cc936.crf
│   ├── cc936.d
│   ├── cc936.o
│   ├── ctiic.crf
│   ├── ctiic.d
│   ├── ctiic.o
│   ├── dac.crf
│   ├── dac.d
│   ├── dac.o
│   ├── delay.crf
│   ├── delay.d
│   ├── delay.o
│   ├── diskio.crf
│   ├── diskio.d
│   ├── diskio.o
│   ├── dma.crf
│   ├── dma.d
│   ├── dma.o
│   ├── exfuns.crf
│   ├── exfuns.d
│   ├── exfuns.o
│   ├── exit.crf
│   ├── exit.d
│   ├── exit.o
│   ├── fattester.crf
│   ├── fattester.d
│   ├── fattester.o
│   ├── ff.crf
│   ├── ff.d
│   ├── ff.o
│   ├── fontupd.crf
│   ├── fontupd.d
│   ├── fontupd.o
│   ├── ft5206.crf
│   ├── ft5206.d
│   ├── ft5206.o
│   ├── game.crf
│   ├── game.d
│   ├── game.o
│   ├── gt9147.crf
│   ├── gt9147.d
│   ├── gt9147.o
│   ├── hcsr04.crf
│   ├── hcsr04.d
│   ├── hcsr04.o
│   ├── key.crf
│   ├── key.d
│   ├── key.o
│   ├── l298n.crf
│   ├── l298n.d
│   ├── l298n.o
│   ├── led.crf
│   ├── led.d
│   ├── led.o
│   ├── lsens.crf
│   ├── lsens.d
│   ├── lsens.o
│   ├── malloc.crf
│   ├── malloc.d
│   ├── malloc.o
│   ├── myiic.crf
│   ├── myiic.d
│   ├── myiic.o
│   ├── ott2001a.crf
│   ├── ott2001a.d
│   ├── ott2001a.o
│   ├── pid.crf
│   ├── pid.d
│   ├── pid.o
│   ├── pwm.crf
│   ├── pwm.d
│   ├── pwm.o
│   ├── rng.crf
│   ├── rng.d
│   ├── rng.o
│   ├── sdio_sdcard.crf
│   ├── sdio_sdcard.d
│   ├── sdio_sdcard.o
│   ├── spi.crf
│   ├── spi.d
│   ├── spi.o
│   ├── startup_stm32f40_41xxx.d
│   ├── startup_stm32f40_41xxx.o
│   ├── sys.crf
│   ├── sys.d
│   ├── sys.o
│   ├── test.axf
│   ├── test.build_log.htm
│   ├── test.crf
│   ├── test.d
│   ├── test.hex
│   ├── test.htm
│   ├── test.lnp
│   ├── test.o
│   ├── test.sct
│   ├── test_Target 1.dep
│   ├── text.crf
│   ├── text.d
│   ├── text.o
│   ├── tftlcd.crf
│   ├── tftlcd.d
│   ├── tftlcd.o
│   ├── timer.crf
│   ├── timer.d
│   ├── timer.o
│   ├── touch.crf
│   ├── touch.d
│   ├── touch.o
│   ├── tpad.crf
│   ├── tpad.d
│   ├── tpad.o
│   ├── trailing.crf
│   ├── trailing.d
│   ├── trailing.o
│   ├── usart.crf
│   ├── usart.d
│   ├── usart.o
│   ├── usmart.crf
│   ├── usmart.d
│   ├── usmart.o
│   ├── usmart_config.crf
│   ├── usmart_config.d
│   ├── usmart_config.o
│   ├── usmart_str.crf
│   ├── usmart_str.d
│   ├── usmart_str.o
│   ├── w25qxx.crf
│   ├── w25qxx.d
│   ├── w25qxx.o
│   ├── wdg.crf
│   ├── wdg.d
│   └── wdg.o
├── SYSTEM
│   ├── delay
│   │   ├── delay.c
│   │   └── delay.h
│   ├── readme.txt
│   ├── sys
│   │   ├── core_cm4.h
│   │   ├── core_cm4_simd.h
│   │   ├── core_cmFunc.h
│   │   ├── core_cmInstr.h
│   │   ├── stm32f4xx.h
│   │   ├── sys.c
│   │   ├── sys.h
│   │   └── system_stm32f4xx.h
│   └── usart
│       ├── usart.c
│       └── usart.h
├── TEXT
│   ├── fontupd.c
│   ├── fontupd.h
│   ├── text.c
│   └── text.h
├── USER
│   ├── Listings
│   │   ├── startup_stm32f40_41xxx.lst
│   │   └── test.map
│   ├── Objects
│   │   └── test_Target 1.dep
│   ├── startup_stm32f40_41xxx.s
│   ├── test.c
│   ├── test.uvguix.gyy
│   ├── test.uvoptx
│   └── test.uvprojx
└── USMART
    ├── readme.txt
    ├── usmart.c
    ├── usmart.h
    ├── usmart_config.c
    ├── usmart_str.c
    └── usmart_str.h

43 directories, 274 files



实例下载地址

stm32f4五子棋对战

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警