summaryrefslogtreecommitdiff
path: root/2.3-1/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci
blob: f377d385db06e565b0882b335b79085d9871d702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function ArduinoSetupFunctions = GetArduinoSetupFunctions()
// -----------------------------------------------------------------
// Get list of Arduino setup functions supported 
//
// Input data:
//    None
//
// Output data:
//    List of Arduino setup functions supported
//
// Author: Siddhesh Wani  
// -----------------------------------------------------------------

ArduinoSetupFunctions = [
					"cmd_dcmotor_setup"];

endfunction