summaryrefslogtreecommitdiff
path: root/macros/Hardware/AVR/GetAVRSupportFunctions.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/Hardware/AVR/GetAVRSupportFunctions.sci')
-rw-r--r--macros/Hardware/AVR/GetAVRSupportFunctions.sci26
1 files changed, 22 insertions, 4 deletions
diff --git a/macros/Hardware/AVR/GetAVRSupportFunctions.sci b/macros/Hardware/AVR/GetAVRSupportFunctions.sci
index cce49f9..99c6242 100644
--- a/macros/Hardware/AVR/GetAVRSupportFunctions.sci
+++ b/macros/Hardware/AVR/GetAVRSupportFunctions.sci
@@ -1,3 +1,13 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
function AVRSupportFunctions = GetAVRSupportFunctions()
// -----------------------------------------------------------------
// Get list of AVR peripherals supported
@@ -8,7 +18,7 @@ function AVRSupportFunctions = GetAVRSupportFunctions()
// Output data:
// None
//
-// Author: Siddhesh Wani
+// Author: Siddhesh Wani Ashish Kamble
// -----------------------------------------------------------------
AVRSupportFunctions = [
@@ -16,10 +26,18 @@ AVRSupportFunctions = [
"AVRDigitalIn"
"AVRDigitalOut"
"AVRDigitalSetup"
+ "AVRDigitalPortSetup"
+ "AVRTimerSetup"
"AVRGetTimerValue"
- "AVRPWMSetDuty"
- "AVRPWMSetup"
+ "AVRPWM0Setup"
+ "AVRPWM0SetDuty"
+ "AVRPWM1Setup"
+ "AVRPWM1SetDuty"
+ "AVRPWM2Setup"
+ "AVRPWM2SetDuty"
"AVRReadADC"
- "AVRTimerSetup"];
+ "AVRSleep"
+ "AVRUARTSetup"
+ ];
endfunction