代码搜索:Test
找到约 10,000 项符合「Test」的源代码
代码结果 10,000
www.eeworm.com/read/380138/9160907
m test.m
%clear;
clc
n=[4];
d=[1 50 0];
K= [ 3.3965 30.4324 0.0074];
%Kd= 37.7150 ,Kp=26.9776 ;Ki= 67.7886;
%Kd= 1 ,Kp=1 ;Ki= 1;
Gstep = tf(n,d);
% Gc =tf(K1,[1 0])
% T = feedback(Gc*Gstep,1);
www.eeworm.com/read/380136/9161035
s test.s
.text
.global _start
_start:
b MAINFUNC
MAINFUNC:
ldr sp, =1024*4 @ 把堆栈指针设置为4K处
mov fp, #0 @ 前面没有函数调用,所以把fp清零
mov r0, #0 @ 把main函数的argc设置为0
mov r1, #0 @ 把main函数的argv设置为0
www.eeworm.com/read/380136/9161038
lds test.lds
MEMORY
{
CODE (rx) : ORIGIN = 0x00000000, LENGTH = 0x00010000
DATA (rw) : ORIGIN = 0x00100000, LENGTH = 0x00010000
}
SECTIONS
{
. = 0x0;
.text : { *(.text) }
. = 0x100000;
.data : {
www.eeworm.com/read/281350/9161260
out test.out
www.eeworm.com/read/281350/9161267
txt test.txt
00000000 003C30F6
00000004 0005E02A
00000008 0000006A
0000000C 00000362
00000010 003C36E6
00000014 00002000
00000018 00000000
0000001C 00000000
00000020 003C30F6
00000024 0006802A
00000028 0
www.eeworm.com/read/281350/9161276
cmd test.cmd
/*
* Copyright (C) 2003 Texas Instruments Incorporated
* All Rights Reserved
*/
/*
*---------timer1.cmd---------
*
*/
MEMORY
{
L2 : o = 00000000h l = 00040000h /* all SRAM */
www.eeworm.com/read/281350/9161280
pjt test.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="D:\Work\CCStudio_v3.1\MyProjects\"
ProjectType=Executable
CPUFamily=TMS320C64XX
Tool
www.eeworm.com/read/281350/9161281
sbl test.sbl
www.eeworm.com/read/281350/9161289
c test.c
#include
#include
void main()
{
Uint32 *p = (Uint32 *)(0x00020000);
memset (p, 0x05, 100);
//Initialise CSL
CSL_init();
}
www.eeworm.com/read/281344/9161560