From 02f2862023bb34146f6a0a96c2795bebe97e7c47 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Thu, 17 Dec 2015 14:48:36 +0530 Subject: Code generation for Arduino changed. DC motor added to Arduino --- 2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.bin | Bin 0 -> 2428 bytes 2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci | 24 ++++++++++++++++++++++++ 2.3-1/macros/Hardware/AVR/lib | Bin 860 -> 884 bytes 2.3-1/macros/Hardware/AVR/names | 1 + 4 files changed, 25 insertions(+) create mode 100644 2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.bin create mode 100644 2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci (limited to '2.3-1/macros/Hardware') diff --git a/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.bin b/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.bin new file mode 100644 index 00000000..f3c9e3e4 Binary files /dev/null and b/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.bin differ diff --git a/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci b/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci new file mode 100644 index 00000000..0042540a --- /dev/null +++ b/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci @@ -0,0 +1,24 @@ +function AVRPWMSetDuty(timer, duty) +// Function to set duty for PWM of AVR +// +// Calling Sequence +// AVRPWMSetDuty(uint8 timer, uint8 duty) +// +// Parameters +// timer: timer to be used for PWM generation (0,1,2) +// duty: duty for PWM waveform (0-100) +// +// Description +// This function sets duty for PWM waveform according to given parameters. +// +// Examples +// AVRPWMSetDuty(0,10) //Sets 10% duty for timer 0 output. +// +// Authors +// Siddhesh Wani +// +// + +// This is curretly dummy function. It provides no functionality but is required +// for providing support for generating C code for AVR. +endfunction diff --git a/2.3-1/macros/Hardware/AVR/lib b/2.3-1/macros/Hardware/AVR/lib index aa4d6113..3e0137c5 100644 Binary files a/2.3-1/macros/Hardware/AVR/lib and b/2.3-1/macros/Hardware/AVR/lib differ diff --git a/2.3-1/macros/Hardware/AVR/names b/2.3-1/macros/Hardware/AVR/names index afd171ec..0e6aa636 100644 --- a/2.3-1/macros/Hardware/AVR/names +++ b/2.3-1/macros/Hardware/AVR/names @@ -2,6 +2,7 @@ AVRADCSetup AVRDigitalIn AVRDigitalOut AVRDigitalSetup +AVRPWMSetDuty AVRPWMSetup AVRReadADC GetAVRSupportFunctions -- cgit