blob: 50a913fac754352a0b9594a0970b626f95ea6c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function AVRSupportFunctions = GetAVRSupportFunctions()
// -----------------------------------------------------------------
// Get list of AVR peripherals supported
//
// Input data:
// None
//
// Output data:
// None
//
// Author: Siddhesh Wani
// -----------------------------------------------------------------
AVRSupportFunctions = ["AVRDigitalOut"];
endfunction
|