-
91331990five
一个五子棋的源文件,另外还有设计程序的基本思路和玩法(Gobang a source file, as well as the design process of the basic thinking and playing)
- 2008-06-24 23:17:25下载
- 积分:1
-
GLMetaseq.h
让ARToolKit支持MQO模型的必须头文件,GLMetaseq.h(Let ARToolKit support MQO model must header files, GLMetaseq.h)
- 2014-02-09 23:10:11下载
- 积分:1
-
DS18B20
单总线温度DS18b20程序,适用于AVR单片机。(Single-bus temperature DS18b20 procedures applicable to the AVR microcontroller.)
- 2013-12-20 17:00:36下载
- 积分:1
-
Servo_avr
内容为基于 AVR 单片机的舵机驱动电路研究,适合入门(Servo drive circuit AVR microcontroller based research)
- 2013-11-25 09:54:59下载
- 积分:1
-
小制作2.0_贪吃蛇
说明: 51的贪吃蛇小游戏,没什么算法,多看就明白了(51 Snake Eating Game, there is no algorithm, you can see more clearly.)
- 2020-06-21 10:00:02下载
- 积分:1
-
ad lcd
使用c语言开发51版的ADC功能与LCD功能。(51 written using c language version of the clock, can realize the normal timing)
- 2019-04-20 16:06:31下载
- 积分:1
-
st32_AUDIO_USB_SRC
ST32 Library for audio USB connection and playback
- 2020-06-28 14:20:02下载
- 积分:1
-
串口调试工具及源代码
说明: 非常好用的串口变成工具和源代码,可以自动搜索串口,有非常高的参考价值。(it is very nice! you can use it easyly, it is Visul C++ code .)
- 2019-02-22 14:38:35下载
- 积分:1
-
DebugConsole
在界面开发中生成控制台窗口,方便输出一些信息和变量,方便调试。(Generate a console window in the interface development, convenient to output some information and variables to facilitate debugging.)
- 2012-07-13 10:12:40下载
- 积分:1
-
线程关联类
#include "ThreadPool.h"#include "WorkerThread.h"#include "Task.h"/******************************************************************************** 线程池******************************************************************************/CThreadPool::CThreadPool(int initnum){m_threadNum = initnum;m_maxThrNum = initnum * 2; // 最多线程数for(int i = 0; i < m_threadNum; i++){ CWorkerThread* thr = new CWorkerThread(); thr->SetThreadPool(this); thr->Start();AppendToIdleList(thr); }m_monitor = 0;}CThreadPool::~CThreadPool(){ TerminateAll();}void CThreadPool::TerminateAll(){m_mtxTaskList.Lock();m_taskList.clear();m_mtxTas
- 2022-06-13 18:08:15下载
- 积分:1