代码搜索:unsigned
找到约 10,000 项符合「unsigned」的源代码
代码结果 10,000
www.eeworm.com/read/128353/14303176
h mcbspdrv.h
/******************************************************************************/
/* DNA PROPRIETARY INFORMATION */
/* (C) Copyright 1997,1998 by DNA E
www.eeworm.com/read/230047/14307751
cpp svm_struct_api.cpp
/***********************************************************************/
/* */
/* svm_struct_api.c
www.eeworm.com/read/230034/14308272
h zf.h
#ifndef _zf_
#define _zf_
void zf(unsigned char a[7])
{
//年
j=i=a[0];
i&=0xf0;
i>>=4;
a[0]=i;
i=j;
i&=0x0f;
a[1]=i;
//月
i=a[0];
i&=0xf0;
i>>=4;
a[3]=i;
i=a[0];
i&=0x0f;
a[4]=i;
a[0
www.eeworm.com/read/128178/14311865
h tm_defs.h
/*************************************************************************/
/* */
/* Copyright (c) 1993-1996 Accelerated
www.eeworm.com/read/229891/14313431
c msp430xg46x_uscib0_i2c_11.c
//******************************************************************************
// MSP430xG461x Demo - USCI_B0 I2C Slave TX multiple bytes to MSP430 Master
//
// Description: This demo connect
www.eeworm.com/read/229890/14313558
h lcd.h
/*----------------------------------------------------------------------------
* Name: LCD.H
* Purpose: LCD function prototypes
* Version: V1.10
*----------------------------
www.eeworm.com/read/229875/14314088
cpp transmitterclass.cpp
// TransmitterClass.cpp: implementation of the TransmitterClass class.
//
//
// Copyright 2002 The Mobile and Portable Radio Research Group
//
////////////////////////////////////////////////////
www.eeworm.com/read/229875/14314090
h sim.h
/////////////////////////////////////////////
// Class Definitions if SimConfigClass and ErrorRunClass
//
// Copyright 2002 The Mobile and Portable Radio Research Group
//
//////////////////////
www.eeworm.com/read/229772/14317409
c 413.c
#include "msp430x41x.h"
void delay(unsigned int x)
{
unsigned int i;
for(i=x;i>0;i--); //Delay
}
void main(void)
{
unsigned int freq; //Define global variable
www.eeworm.com/read/127933/14328052
c delaya.c
#pragma CODE
#define uint unsigned int
void delay(uint x) {
}