summaryrefslogtreecommitdiff
path: root/macros/GeneralFunctions/SCI2CTemplate.sci
blob: e47bdd00061488cab24bc2dd8852b5e1869d8705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
function out = SCI2CTemplate(in1,in2)
// function out = SCI2CTemplate(in1,in2)
// -----------------------------------------------------------------
// This is a template function which shows how to comment functions.
//
// Input data:
// in1: input argument number 1
// in2: input argument number 2
//
// Output data:
// out: output argument number 1
//
// Status:
// 03-Jan-2008 -- Raffaele Nutricato: Author.
// 
// Copyright 2008 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------

// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),2,2);

// -----------------------
// --- Initialization. ---
// -----------------------
// ---------------------------
// --- End Initialization. ---
// ---------------------------

endfunction