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