代码搜索:SPCE
找到约 5,520 项符合「SPCE」的源代码
代码结果 5,520
www.eeworm.com/read/184543/9095083
c main.c
#include "SPCE061V004.h"
void Init_SER_Key();
void Init_MAX7219();
void LEDdisplay( unsigned char , unsigned char );
void KeyScan();
void System_Init(void);
unsigned int ReturnKeyValue();
void
www.eeworm.com/read/371114/9565148
asm d12hal.asm
.include ..\spce061\061reg.inc
.public _F_InitWriteD12
.public _F_InitReadD12
.public _F_ReadD12
.public _F_WriteCmdToD12
.public _F_WriteDataToD12
.code
//=================================
www.eeworm.com/read/357672/10203231
h easy_io.h
#include "SPCE061A.h"
#ifndef __EASY_IO_H__
#define __EASY_IO_H__
// write your header here
// easy io can be used to control the io port as 51 microsoft, but the io port
// can't be worked in th
www.eeworm.com/read/422271/10651154
c choose.c
#include "spce061a.h"
#include "Sound.h"
#include "Key.h"
#include "operation.h"
int Choose(){
int KeyCode ;
KeyCode = Key_Get();
switch (KeyCode){
case KEY_2:
return ADD ;
ca
www.eeworm.com/read/420463/10794959
c main.c
#include "includes.h"
#include
#define MAX_STK_SIZE 50 //堆栈字数50个
void delay();
void SerialInit(void);
void Output();
void TaskA(void* data);
void TaskB(void* data);
www.eeworm.com/read/437431/7748245
c keywakeup_main.c
#include "SPCE061.H"
main()
{
unsigned int uiTem;
__asm("INT OFF");
*P_IOA_Dir = 0xff00; //IOA0~IOA7:input;IOA8~IOA15:output
www.eeworm.com/read/254595/12128558
c run.c
#include
extern int key_code[16];
extern int next_floor; //下一次要到达的层
extern int floor; //层位置
extern int flag;
www.eeworm.com/read/233921/14127946
c run.c
#include
extern int key_code[16];
extern int next_floor; //下一次要到达的层
extern int floor; //层位置
extern int flag;
www.eeworm.com/read/473745/1397565
c keywakeup_main.c
#include "SPCE061.H"
main()
{
unsigned int uiTem;
__asm("INT OFF");
*P_IOA_Dir = 0xff00; //IOA0~IOA7:input;IOA8~IOA15:output
www.eeworm.com/read/331810/3403762
c main.c
//=================================================================================
//来源:《SPCE061单片机原理及应用技术》 第四章 程序设计
//描述: 程序4.11 C语言中具有局部变量
//日期: 2003/05/20
//================================