-
usb3.0下载程序的源码
usb3.0下载程序的源码:CYUSB3014从RAM起动加载这个程序。通过这个程序将最终的产品程序下载到FLASH中。最后CYUSB3014从FLASH启动,就可以实现程序的引导。
- 2022-02-22 00:56:07下载
- 积分:1
-
C++Primer Plus第6版中文版源代码
应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术
示例:
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
Item items[MAX]; // holds stack items
int top; // index for top stack item
public:
Stack();
bool isempty() const;
bool isfull() const;
// push() returns false if stack already is full, true otherwise
bool push(const Item & item); // add item to stack
// pop() returns false if stack already is empty, true otherwise
bool pop(Item & item); // pop top into item
};
#endif
- 2022-03-16 20:51:53下载
- 积分:1
-
Kvip
用VC++做的考勤系统,ACCESS数据库操作(VC++ to do with the attendance system, ACCESS database operations)
- 2009-05-13 11:26:13下载
- 积分:1
-
CPP
西安交通大学本科生C++程序设计全程课件和两套模拟试题。适合自学
(Xi an Jiaotong University undergraduate C + + programming throughout courseware and two sets of mock examination papers. Suitable for self-study )
- 2012-11-08 21:22:37下载
- 积分:1
-
a7itude
在2008年6月的Conitec百行代码大赛中,来自德国的Christian Behrenberg凭着a7titude的优异表现获得了第二名。
Conitec的3D Game Studio(A7引擎)在国内也有着不少用户。Conitec百行代码大赛要求参赛作品的源代码的行数不能超过100行(以结束符" "为标志),源代码文件大小不能超过10kB。即使在如此苛刻的条件下,还是有不少游戏设计师拿出了精彩的作品。而a7titude在其中尤为抢眼。
a7titude是Christian Behrenberg向A7游戏引擎社区致意的作品,游戏概念很简单,用鼠标操作小球到达目的地就算过关。简单并不意味着游戏没有难度,部分关卡甚至会让你有砸鼠标的冲动。但同时游戏的休闲倾向也十分明显,除了循序渐进的难度设计外,最难的关卡只要反复尝试即使休闲玩家也不至于走投无路。(In June 2008 the Competition Conitec 100 lines of code, from Germany s Christian Behrenberg With a7titude s outstanding performance won second place.
Conitec of the 3D Game Studio (A7 engine) also has a lot of users in the country. 100 lines of code required Conitec contest entries the number of lines of source code can not exceed 100 lines (to end the character " " as a symbol), the source code file size can not exceed 10kB. Even in such harsh conditions, there are still a lot of game designers come up with wonderful works. The a7titude which is especially eye-catching.
a7titude is a Christian Behrenberg community to pay tribute to the A7 game engine works, the game concept is very simple, with the mouse even pass the ball to reach the destination. Simple does not mean that the game is not difficult, some points or even let you have the urge to hit the mouse. At the same time casual games tend to have very obvious, in addition to the difficulty of the design step by step, the )
- 2009-09-07 17:25:56下载
- 积分:1
-
ccs3.3Pexample
dsp开发环境CCS3.3的学习实例程序,对于新学者有很大的帮助(the dsp developed environmental CCS3.3 the learning instance procedures, great help for new scholars)
- 2012-11-12 15:21:08下载
- 积分:1
-
FATFS
讲述STM32与SD卡的FAT文件系统,便于单片机数据保存(About the STM32 and SD card FAT file system, to facilitate data storage SCM)
- 2014-02-17 11:07:33下载
- 积分:1
-
mzbiev
CMMB__标准规范 GYT 220 9-2008 移动多媒体广播 第9部分:卫星分发信道帧结构,信道编码和调制 pdf(CMMB__ standard specification GYT 220-2008 mobile multimedia broadcasting-part 9: satellite distribution channel frame structure, channel encoding and modulation pdf)
- 2019-01-06 00:01:20下载
- 积分:1
-
bch3
BCH编码、译码器,支持参数化使用,从多项式生成、编码到解码,全都有。(BCH encoder decoder)
- 2015-03-14 10:23:01下载
- 积分:1
-
test_1
使用atmega128芯片完成单片机的流水灯设置,并能灵活修改代码完成个人所需。(Complete water lights singlechip set using the ATmega128 chip, and can easily modify the code to complete the personal needs.)
- 2013-03-10 16:30:03下载
- 积分:1