搜索结果
找到约 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)
其他 library IEEE use IEEE.STD_LOGIC_1164.all use IEEE.STD_LOGIC_ARITH.all use IEEE.STD_LOGIC_UNSIG
library IEEE
use IEEE.STD_LOGIC_1164.all
use IEEE.STD_LOGIC_ARITH.all
use IEEE.STD_LOGIC_UNSIGNED.all
单片机编程 MEGA16制作的电子时钟(附仿真图+源代码)
#include <iom16v.h>
#include <macros.h>
#define uchar unsigned char
#define uint unsigned int
uchar
num,miao,fen,shi,miaoge,miaoshi,fenge,fenshi,shig
嵌入式/单片机编程 320X240LCD仿真程序 320x240lcd仿真程序
320X240LCD仿真程序 320x240lcd仿真程序,仿真单色,4色,16色,256色lcd 使用方法:(需要注册mscomm32.ocx控件程序才能正常运行) 通过串口或TCP/IP将LCD显示缓冲区的全部内容发送到本软件接收即可 软件同时监控串口和tcp/ip口的数据,数据为一屏时刷新显示内容。 数据格式: 单色:unsigned char lcdbuf[9600] 每位一点 4色 ...
单片机编程 采用18b20芯片的温度测量C51源程序
#include <reg51.h>#include<intrins.h>
#define&nbsp;&nbsp; BUSY1&nbsp;&nbsp;&nbsp; (DQ1==0) sbit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DQ1&nbsp;&nbsp;&nbsp; =&nbsp; P0^4;
unsigned char idata TMP; unsigned char idata TMP_d; unsigned char f; void wr_ds18_1(char dat);unsigned char rd_ds18_1();
/*************** ...
嵌入式/单片机编程 #include <reg52.h> #include <stdio.h> #include <string.h> #define uchar unsigne
#include <reg52.h>
#include <stdio.h>
#include <string.h>
#define uchar unsigned char
#define uint unsigned int
#define isp_iap_byte_read 0x1
#define isp_iap_byte_program 0x2
#define isp_iap_sector_erase 0x3
#define wait_time 0x1
技术资料 nrf24L01发送程序
本内容提供nrf24L01发送程序,欢迎大家下载学习,代码如下:
#include
#include
typedef unsigned char uchar;
typedef unsigned char uint;
//****************************************IO端口定义***************************************
sbit MISO =P1^2;
sbit MOSI =P3^2;
sbit SCK =P1^6;
sbit CE =P1^5;
sbit ...
其他 -- Simple Robot Control Program -------------------------------------------------------------------
-- Simple Robot Control Program
--------------------------------------------------------------------------
library IEEE
use IEEE.STD_LOGIC_1164.all
use IEEE.STD_LOGIC_ARITH.all
use IEEE.STD_LOGIC_UNSIGNED.all
技术资料 c语言中写二进制数.rar
c语言中写二进制数。引用例子:
#define Bin(n) LongToBin(0x##n##l)
void main(void)
{
unsigned char c
c =
单片机开发 VB遥控播放器红外遥控解码 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sb
VB遥控播放器红外遥控解码
#include <regX52.h>
#define c(x) (x*110592/120000)
sbit Ir_Pin=P3^2
sbit beep=P2^1
//sbit RELAY=P2^0
#define INBUF_LEN 4 //数据长度
unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 } //发送缓冲区
unsigned char inbuf2[50] //接收缓冲区
unsigned char count3
void init_s ...