blob: 61bb6c0d97644f8caa14ddd29c95780c3bb5bb15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function RPiSupportFunctions = GetRPISupportFunctions()
// -----------------------------------------------------------------
// Get list of RPI peripherals supported
//
// Input data:
// None
//
// Output data:
// None
//
// Author: Siddhesh Wani
// -----------------------------------------------------------------
RPiSupportFunctions = [
"RPI_DigitalIn"
"RPI_DigitalOut"
"RPI_DigitalSetup"
"RPI_DelayMilli"
"RPI_DelayMicro"];
endfunction
|