代码搜索:高通骁龙
找到约 10,000 项符合「高通骁龙」的源代码
代码结果 10,000
www.eeworm.com/read/435439/6966315
c jf_act.c
void fun_act_on(void ) //根据请求动作
{
//压缩机开/关 排气高(连续3次)、排气感温包故障、高压保护、低压保护(连续3次)、压缩机过载保护(连续3次)时关压缩机
if ((fault_state4 &b_fault_hpp) ||(fault_comp_guozai_times>=3) ||(fault_lpp_times>=3)||(fault_exTH
www.eeworm.com/read/435439/6966331
_c jf_act._c
void fun_act_on(void ) //根据请求动作
{
//压缩机开/关 排气高(连续3次)、排气感温包故障、高压保护、低压保护(连续3次)、压缩机过载保护(连续3次)时关压缩机
if ((fault_state4 &b_fault_hpp) ||(fault_comp_guozai_times>=3) ||(fault_lpp_times>=3)||(fault_exTH
www.eeworm.com/read/435439/6966333
bak jf_act.c.bak
void fun_act_on(void ) //根据请求动作
{
//压缩机开/关 排气高(连续3次)、排气感温包故障、高压保护、低压保护(连续3次)、压缩机过载保护(连续3次)时关压缩机
if ((fault_state4 &b_fault_hpp) ||(fault_comp_guozai_times>=3) ||(fault_lpp_times>=3)||(fault_exTH
www.eeworm.com/read/468607/6985842
a51 sh603.a51
TXD EQU P1.0
RXD EQU P1.1 ;定义89C51 P1.0 为发送端,P1.1 为接收端
ORG 0000H
AJMP MAIN
ORG 0100H
MAIN: MOV A, #30H
MOV R5, #5
SETB RXD ;P1.0 置高
TX: LCALL OUTPUT ;调用发送子程序,将寄存器A
www.eeworm.com/read/458306/7299469
h ascii.h
#ifndef __ASCII_H__
#define __ASCII_H__
unsigned char ascii_table_8X16[]={
/*-- 文字: (空白) --*/
/*-- Times New Roman12; 此字体下对应的点阵为:宽x高=8x16 --*/
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0
www.eeworm.com/read/458012/7314061
plg tcp_ip_51_v1.plg
礦ision3 Build Log
Project:
E:\张高旺\work\51\TCP_IP_51_V1\TCP_IP_51_V1\project\TCP_IP_51_V1.uv2
Project File Date: 09/26/2008
Output:
Build targe
www.eeworm.com/read/457711/7319035
m ea404.m
%《工程线性代数(MATLAB版)》第四章例题程序ea404
% 电子工业出版社出版 陈怀琛 高淑萍 杨威合著 2007年5月
% 三维空间的欠定方程
%
A=[8,8,24;-9,9,9;-19,23,27],b=[16;0;4]
U0=rref([A,b])
www.eeworm.com/read/457711/7319047
m ea518.m
% 《工程线性代数(MATLAB版)》第五章例题5.18程序ea518
% 陈怀琛,高淑萍,杨威合编,电子工业出版社,2007年6月
% 求两组基之间的过渡矩阵
%
A=[1,1;1,-1;-1,2], b=[1;3;3]
xhat=inv(A'*A)*A'*b
e=A*xhat-b, norm(e)
www.eeworm.com/read/457711/7319068
m ea312.m
% 《工程线性代数(MATLAB版)》第三章例题3.12程序ea312
% 陈怀琛,高淑萍,杨威合编,电子工业出版社,2007年6月
% 矩阵行列式的计算
%
A=[6,6,10,28;6,5,6,21;9,3,2,12;1,1,2,4]
D=det(A)
www.eeworm.com/read/457711/7319087
m ea622.m
% 《工程线性代数(MATLAB版)》第六章例题6.22程序ea622
% 陈怀琛,高淑萍,杨威合编,电子工业出版社,2007年6月
% 物料混合问题
%
clear
A=[-1/10,1/40;1/10,-1/10]
[p,lamda]=eig(A)
for t = 1:100;
Y(:,t)=p*expm(lamda*t)*inv(p)*[60;0];
end
p