From 9e506f48291533cba7b4c555b0d2e98f234bfbe3 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Wed, 19 Apr 2017 14:28:34 +0530 Subject: Merged Ashish's work --- macros/Hardware/AVR/GetAVRSupportFunctions.sci | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'macros/Hardware/AVR/GetAVRSupportFunctions.sci') diff --git a/macros/Hardware/AVR/GetAVRSupportFunctions.sci b/macros/Hardware/AVR/GetAVRSupportFunctions.sci index cce49f91..99c6242f 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 -- cgit