搜索结果
找到约 165 项符合
unsigned 的查询结果
按分类筛选
- 全部分类
- 技术资料 (36)
- 单片机开发 (36)
- 单片机编程 (29)
- 其他 (8)
- 源码 (7)
- 嵌入式/单片机编程 (6)
- C/C++语言编程 (5)
- VHDL/FPGA/Verilog (4)
- Linux/Unix编程 (3)
- 笔记 (2)
- 操作系统开发 (2)
- 其他书籍 (2)
- 嵌入式综合 (2)
- 汇编语言 (2)
- 其他嵌入式/单片机内容 (2)
- 软件 (1)
- 书籍 (1)
- 书籍源码 (1)
- PCB图/BOM单/原理图 (1)
- 其他文档 (1)
- 技术书籍 (1)
- 传感与控制 (1)
- 驱动编程 (1)
- Internet/网络编程 (1)
- 语音压缩 (1)
- 数学计算 (1)
- 数据结构 (1)
- 微处理器开发 (1)
- Symbian (1)
- 系统设计方案 (1)
- 软件设计/软件工程 (1)
- VC书籍 (1)
- 邮电通讯系统 (1)
- VIP专区 (1)
嵌入式综合 红外遥控RGB
#include "STC90.h"
#include < intrins.h >
#define uchar unsigned char
#define uint unsigned int
#define led_port P1
sbit IR_RE = P3^2;
sbit led_r = P1^3;
sbit led_g = P1^4;
sbit led_b = P1^5;
sbit led_wd = P1^7;
sbit K1 =P3^0 ; //增加键
sbit K2 =P3^1 ; ...
传感与控制 ADXL345快速入门及范例
ADXL345的详细介绍资料
本模块使用说明书。
本压缩文件能够利用角度传感器对x,y,z三方的加速度值,角度值进行测量,并集成了1602对其进行显示。
为了便于使用,我们分别将模块单独化,如果您有使用的意向,可以单独摘出&nbsp; angle.c 引入到您自己新建的工程中。
关于angle.c文件的内部函数使用说明。
&nbsp;&nbsp; ...
技术资料 c语言——谭浩强
则x1=p+q
在前两个例子中用到了输入和输出函数scanf和 printf,在以后要详细介绍。这里我们先简单介绍一下它们的格式,以便下面使用。
C 语言的注释符是以“/*”开头并以“*/”结尾的串。在“/*”和“*/”之间的即为注释。程序编译时,不对注释作任何处理。注释可出现在程序中的任何位置。注释用来向用户提示或解释程序的意 ...
源码 12345
/****************temic*********t5557***********************************/ &nbsp;&nbsp;
#include &nbsp; <at892051.h> &nbsp; &nbsp;
#include &nbsp; <string.h> &nbsp;&nbsp;
#include &nbsp; <intrins.h> &nbsp; &nbsp;
#include &nbsp; <stdio.h> &nbsp; &nbsp;
#define &nbsp; &nbsp;uchar &nbsp; &nbsp;unsign ...
单片机编程 红外解码程序
/*
&nbsp;* _168ZHONGDUAN2.c
&nbsp;*
&nbsp;* Created: 2014/11/2 15:12:45
&nbsp;* &nbsp;Author: lenovo
&nbsp;*/&nbsp;
#include <avr/io.h>
#include <avr/iom168pa.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <avr/eeprom.h>
//#include <util/delay_basic.h>
//unsigned char const SEGtabl ...