基本信息
源码名称:stm32f4五子棋对战
源码大小:5.44M
文件格式:.rar
开发语言:C/C++
更新时间:2021-01-05
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍



五子棋对战系统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