-
Visual C++数字图像识别技术典型案例
条形码生成器
Visual C++数字图像识别技术典型案例
条形码生成器-Visual C++ Digital image recognition technology a typical case of bar code generator
- 2022-02-13 08:34:42下载
- 积分:1
-
Nistnet网络仿真软件,可以设计PDV模型,在Liuix环境下使用
Nistnet网络仿真软件,可以设计PDV模型,在Liuix环境下使用-Nistnet network simulation software can be designed PDV model, the use of the environment Liuix
- 2023-06-24 07:45:03下载
- 积分:1
-
C源代码的实时操作系统
C源代码的实时操作系统-C source code for the real-time operating system
- 2022-08-16 19:15:40下载
- 积分:1
-
大家快来下载。这是目前最新管方版本了,Micrium
大家快来下载。这是目前最新管方版本了,Micrium-uCOS-II-V284.zip,
开发和研究者可以通过购买Micrium公司的Jean先生的μC/OS-II的书籍,而得到μC/OS-II源代码,但是仅可以作为个人和学校学习使用,所有和μC/OS-II直接和间接相关的商业目的行为,必须购买使用μC/OS-II及系列产品的商业授权,包括芯片/单板/系统厂家的任何参考设计,教学设备和最终的产品,如果没有得到Micrium公司Jean先生签字的合法授权都是不合法的使用, 这在μC/OS-II的书籍Micrium公司(www.micrium.com)和中国代理商-北京麦克泰软件公司网站(www.bmrtech.com)上面中有明确规定。
-Come everyone to download. This is the latest version of the management, Micrium-uCOS-II-V284.zip, development, and researchers can purchase Micrium
- 2022-08-22 20:15:49下载
- 积分:1
-
ucosIII内核源码(source code)
ucos操作系统是可移植的,可植入rom的,可裁剪的抢占式、实时多任务操作系统内核,本源码注释多,适合各阶段读者学习。
- 2022-09-12 19:35:03下载
- 积分:1
-
操作系统课程实验模拟生产者消费者问题的C语言程序.(Turbo C 详见ReadMe)...
操作系统课程实验模拟生产者消费者问题的C语言程序.(Turbo C 详见ReadMe)-Experimental simulation of the operating system producers and consumers of C language program. (See ReadMe Turbo C)
- 2022-01-25 17:14:47下载
- 积分:1
-
操作系统兔子吃草
#include "stdafx.h"
#include
#include
#include
/*信号量的定义,它是负责协调各个线程, 以保证它们能够正确、合理的使用公共资源。 用于控制进程间的同步与互斥*/
typedef HANDLE Semaphore;
Semaphore g_semBuffer,g_semGlass, g_mutex; //mutex 为互斥锁
// 利用 Windows 下的 API 函数(视窗操作系统应用程序接口)来定义 P、V 操作
#define P(S) WaitForSingleObject(S,INFINITE)
#define V(S) ReleaseSemaphore(S,1,NULL)
#define rate 1000
#define CONSUMER_NUM 4 // 消费者个数
#define PRODUCER_NUM 4 // 生产者个数
#define BUFFER_NUM 4 // 缓冲区个数
char *thing[4]={"glass1","glass2","glass3","glass4"};
//公共的队列缓冲区
struct Buffer
{
int product[BUFFER_NUM];
int front,rear;
}g_buf;
//兔子线程
DWORD WINAPI Rabbit(LPVOID para)
{
int i =*(int*)para; //第 i 只小白兔&
- 2022-05-23 06:18:02下载
- 积分:1
-
操作系统实验,编写程序实现银行家算法的C++代码
操作系统实验,编写程序实现银行家算法的C++代码-Operating system, experiment, write a program to achieve banker algorithm C++ code for
- 2022-06-20 11:18:46下载
- 积分:1
-
一个小小的操作系统,这是我写的。操作系统已经有多
A tiny operating system, which is written by me. The os has already had multi-task function, you can add another task in processes.asm .The os is written by nasm on linux platform, and the instruction of assemble is in the makefile.-A tiny operating system, which is written by me. The os has already had multi-task function, you can add another task in processes.asm .The os is written by nasm on linux platform, and the instruction of assemble is in the makefile.
- 2022-10-23 04:35:03下载
- 积分:1
-
在开发arcgis中的地图的调用和保存功能,有源码,希望给JAVA开发者提供帮助。...
在开发arcgis中的地图的调用和保存功能,有源码,希望给JAVA开发者提供帮助。
- 2023-03-07 13:20:03下载
- 积分:1