代码搜索结果
找到约 10,000 项符合
Switch 的代码
usbkeyboard.c
/******************************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
我的邮箱:computer-lov@tom.com
欢迎访问我的blog: http://computer00.21ic.org
USBKeyBoard.C
chap7_15m.m
function [u]=pid_aw1f1(u1,u2,u3,u4)
e=u2;
un=u3;
us=u4;
M=2;
switch M
case 1 %PID
u=e;
case 2 %Anti-windup PID
umin=0;
umax=10;
ua=(umin+umax)/2;
if
chap7_15m.m
function [u]=pid_aw1f1(u1,u2,u3,u4)
e=u2;
un=u3;
us=u4;
M=2;
switch M
case 1 %PID
u=e;
case 2 %Anti-windup PID
umin=0;
umax=10;
ua=(umin+umax)/2;
if
ircode_kenloon.c
#include "user_init.h"
#include "global.h"
#include "ircode.h"
#include "irconfig.h"
const BYTE ir_mapcode[]=
{
IRC_CLEAR, IRC_UP, IRC_REPEAT, IRC_AB, // 0x0
device.h
/**************************************************************/
/* Device.h */
/* */
/* Head of Deivice.c */
/* */
/
usbkeyboard.c
/******************************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
我的邮箱:computer-lov@tom.com
欢迎访问我的blog: http://computer00.21ic.org
USBKeyBoard.C
lnk.cmd
MEMORY
{
VECS: org = 400h , len = 400h
IRAM: org = 800h , len = 0F800h
}
SECTIONS
{
.vec :> VECS
.data :> IRAM
keyread_int.asm
;******************************************************
;
; Filename: KeyRead_Int.asm
; Author: J. Flanagan
; Company: JRF Consulting
; Date: 1/3
chap7_15m.m
function [u]=pid_aw1f1(u1,u2,u3,u4)
e=u2;
un=u3;
us=u4;
M=2;
switch M
case 1 %PID
u=e;
case 2 %Anti-windup PID
umin=0;
umax=10;
ua=(umin+umax)/2;
if
test4.s
AREA Example4,CODE,READONLY ; 声明代码段Example4
ENTRY ; 标识程序入口
CODE32 ; 声明32位ARM指令
START ; if(x>y) z=100;
; else z=50;
; 设x为R0,y为R1,z为R2 (x、y、z均为无符号整数)
MOV R0,#76