-
一个自己改写的串口通信程序,采用了多线程收发的效率较高,并可以实时绘图,源码有注释...
一个自己改写的串口通信程序,采用了多线程收发的效率较高,并可以实时绘图,源码有注释-write in a serial communication procedure, the use of multi-threading TX higher the efficiency, and real-time graphics, a source Notes
- 2022-03-11 04:13:15下载
- 积分:1
-
自编记事本程序,自动记录日期,自动更改记录格式
自编记事本程序,自动记录日期,自动更改记录格式-self Notepad procedures, automatically record the date, automatically recording format changes
- 2022-03-06 13:17:41下载
- 积分:1
-
Paint a more complete software source code, support for brushes and other drawin...
一个比较完整的画图软件的源代码,支持画笔等多种画图工具-Paint a more complete software source code, support for brushes and other drawing tools
- 2022-05-06 05:20:59下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1
-
string handling procedures
字符串处理实例程序-string handling procedures
- 2022-03-23 15:49:19下载
- 积分:1
-
Windows Forms Programming with C#
windows Form 编程教程 源码
Windows Forms Programming with C#
windows Form 编程教程 源码-Windows Forms Programming with C# Windows Form programming tutorial source
- 2022-05-24 16:08:05下载
- 积分:1
-
电梯调度程序
代码的功能是 实现了一台电梯的合理调度系统,包括现实中的电梯的所有功能,还包括报警功能。
- 2023-05-19 05:45:03下载
- 积分:1
-
用MFC编写的五子棋游戏,可以实现局域网与人
用mfc编写的五子棋游戏,可以实现人机对战和局域网对战-Prepared using mfc Gobang games, can be achieved and LAN against man-machine war
- 2022-04-19 00:22:12下载
- 积分:1
-
机票需求分析,需求分析从一开始到包的一个G。
机票需求分析,从开始的需求分析到封装一气呵成,教你编程的基础-Ticket needs analysis, needs analysis from the beginning to the package at one go, and teach you the basis for programming
- 2022-06-02 09:09:25下载
- 积分:1
-
WinCE下的服务器端测试程序[开发环境:EVC4.0]
WinCE下的服务器端测试程序[开发环境:EVC4.0]-WinCE under the server-side test procedure [development environment: EVC4.0]
- 2023-01-25 01:25:04下载
- 积分:1