代码搜索:usage

找到约 10,000 项符合「usage」的源代码

代码结果 10,000
www.eeworm.com/read/160156/5576605

m ttanalogout.m

% TTANALOGOUT Write a value to an analog output channel. % % Usage: ttAnalogOut(outpChan, value) % % Inputs: % outpChan The output channel to write to. Must be between 1 % and
www.eeworm.com/read/160156/5576606

m tttryfetch.m

% TTTRYFETCH Fetch a message from a mailbox. % % Usage: msg = ttTryFetch(mailboxname) % % Inputs: % mailboxname Name of a mailbox. % % See also TTCREATEMAILBOX, TTTRYPOST % % True
www.eeworm.com/read/160156/5576610

m ttcreatemailbox.m

% TTCREATEMAILBOX Create a mailbox for inter-task communication. % % Usage: ttCreateMailbox(mailboxname, maxsize) % % Inputs: % mailboxname Name of the mailbox, must be unique. % maxsize
www.eeworm.com/read/160156/5576611

m ttgetperiod.m

% TTGETPERIOD Retrieve the period of a periodic task. % % Usage: value = ttGetPeriod % value = ttGetPeriod(taskname) % % Inputs: % taskname Name of a task. If not specified, the call w
www.eeworm.com/read/160156/5576618

m ttnonpreemptable.m

% TTNONPREEMPTABLE Make a task non-preemtable. % % Usage: ttNonPreemptable(taskname) % % Inputs: % taskname Name of a task. % % TrueTime, Version 1.3 % Copyright 2005 % Marti
www.eeworm.com/read/160156/5576619

m tttrypost.m

% TTTRYPOST Post a message to a mailbox. % % Usage: ok = ttTryPost(mailboxname, msg) % % Inputs: % mailboxname Name of a mailbox. % msg The contents of the message to be posted. %
www.eeworm.com/read/160156/5576620

m ttcreatetask.m

% TTCREATETASK Create a TrueTime task. % % Usage: ttCreateTask(name, deadline, priority, codeFcn) % ttCreateTask(name, deadline, priority, codeFcn, data) % % Inputs: % name Nam
www.eeworm.com/read/160156/5576629

m ttsetdeadline.m

% TTSETDEADLINE Set the relative deadline of a task. % % Usage: ttSetDeadline(value) % ttSetDeadline(value, taskname) % % Inputs: % value Value to be set. % taskname Name of a t
www.eeworm.com/read/160156/5576630

m ttattachwcethandler.m

% TTATTACHWCETHANDLER Attach a worst-case execution time handler to a task. % % Usage: ttAttachWCETHandler(taskname, handlername) % % Inputs: % taskname Name of the task to which the handle
www.eeworm.com/read/160156/5576635

m ttkilljob.m

% TTKILLJOB Kill the current job of a task. % % Usage: ttKillJob(taskname) % % Inputs: % taskname Name of the task for which the job is to be killed. % % See also TTCREATEJOB % %