-
ch04-Light-160421
说明: 嵌入式开发入门学习,基于KL25的样例工程,KDS环境下编写。(Introductory learning of embedded development, based on KL25 sample engineering, written in KDS environment.)
- 2019-02-28 21:46:08下载
- 积分:1
-
bgc云台超详细工程文件
包含不一样的pid、电机spwm控制、mpu6050和hmc5883的读取与三维校准、AHRS惯性导航、evvgc云台控制、usb虚拟串口传输、开发说明,是目前我找到的最为完整的资料。进行云台开发的朋友千万不要错过。
- 2023-06-23 12:55:13下载
- 积分:1
-
很小的一个程序 就是开个玩笑罢了。 希望大家喜欢。
很小的一个程序 就是开个玩笑罢了。 希望大家喜欢。-A little program. It s just a joke. I wish you will appreciate it.
- 2022-03-24 01:18:56下载
- 积分:1
-
LEAGUESKIN_8.24.4
说明: 用于替换某个文件,可无视任何权限,达到各种想要的功能(Used to replace a file, regardless of any permissions, to achieve the desired functions)
- 2018-12-27 09:30:54下载
- 积分:1
-
ga
说明: maltab j求解背包问题 遗传算法(maltab 0-1bag gasuanfa )
- 2014-10-21 12:15:01下载
- 积分:1
-
4.3inch-480x272-Touch-LCD-B
HX8257 LCD driver on LPC Cortex-M3
- 2013-04-29 01:49:02下载
- 积分: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
-
Tinalinux系统简介与开发入门
说明: Tinalinux系统简介与开发入门, 基于OPenWRT(Introduction and development of tinalinux system, based on optenwrt)
- 2020-10-28 10:29:58下载
- 积分:1
-
c#完全手册中文版,一本C#开发方面的书籍,对初学者很有必要.
c#完全手册中文版,一本C#开发方面的书籍,对初学者很有必要.-completely manual Chinese version, a C# development of books, it is necessary for beginners.
- 2022-05-25 03:46:06下载
- 积分:1
-
算法与复杂性_2
算法与复杂性_2,主要介绍算法的复杂性,是本经典的电子书(下)(Algorithms and Complexity _2, mainly on the complexity of the algorithm, is the classic e-books (2))
- 2005-04-19 20:38:30下载
- 积分:1