搜索结果
找到约 636 项符合
switch-Mode 的查询结果
论文 最优性能滑模控制
Optimal Guaranteed Cost Sliding-Mode Control of
Interval Type-2 Fuzzy Time-Delay Systems
技术资料 Texas Instruments常用元件库
Texas Instruments常用元件库
TI Analog Timer Circuit.IntLib
TI Logic Flip-Flop.IntLib
TI Logic Gate 1.IntLib
TI Logic Gate 2.IntLib
TI Logic Latch.IntLib
TI Logic Switch.IntLib
TI Power Mgt Voltage Reference.IntLib
TI Power Mgt Voltage Regulator.IntLib
Texas Instruments Footprints.PcbLib等等
其他 TTP233D系列单通道触控芯片 台湾通泰永嘉微电优势代理
产品型号:TTP232-CA6 
产品品牌:TONTEK/通泰
封装形式:SOT23-6
产品年份:新年份
联 系 人:许先生
联 系 QQ:1918885898 
联系手机:18898582398
台湾通泰一级代理,原装现货最有优势!工程服务,技术支持,让您的生产高枕无忧!
量大价优,保证原装正品。您有量,我有价!
...
源码 Joystick.c
用于switch摇杆操作的源码,.c跟.h
书籍 EDGE+for+Mobile+Internet
The General Packet Radio Service (GPRS) allows an end user to send and
receive data in packet transfer mode within a public land mobile network
(PLMN) without using a permanent connection between the mobile station
(MS) and the external network during data transfer. This way, GPRS opti-
mizes the us ...
书籍 WIRELESS+AD-HOC+NETWORKS
A wireless ad-hoc network is a wireless network deployed without any infrastructure. In
such a network, there is no access point or wireless router to forward messages among the
computing devices. Instead, these devices depend on the ad-hoc mode of their wireless net‐
work interface cards to commun ...
书籍 Wireless+Communication+Circuits+and+Systems
This book is concerned with integrated circuits and systems for wireless and
mobile communications. Circuit techniques and implementation of reconfigurable
low-voltage and low-power single-chip CMOS transceivers for multiband and multi-
mode universal wireless communications are the focus of the boo ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
源码 数组子系统
#include <stdio.h>
#include <stdlib.h>
#define SMAX 100
typedef struct SPNode
{
int i,j,v;
}SPNode;
struct sparmatrix
{
int rows,cols,terms;
SPNode data [SMAX];
};
sparmatrix CreateSparmatrix()
{
sparmatrix A;
printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):");
scanf("%d, ...