summaryrefslogtreecommitdiff
path: root/macros/Hardware
diff options
context:
space:
mode:
authorsiddhu89902015-12-17 14:48:36 +0530
committersiddhu89902015-12-17 14:48:36 +0530
commit4e3eef82b0aa598761e087925fabe835496ab3bc (patch)
tree5b046acee2453c83fc1d776221373c3992147e7a /macros/Hardware
parent96b51a5ded447676d493be9721e4480065a5ae7e (diff)
downloadScilab2C_fossee_old-4e3eef82b0aa598761e087925fabe835496ab3bc.tar.gz
Scilab2C_fossee_old-4e3eef82b0aa598761e087925fabe835496ab3bc.tar.bz2
Scilab2C_fossee_old-4e3eef82b0aa598761e087925fabe835496ab3bc.zip
Code generation for Arduino changed. DC motor added to Arduino
Diffstat (limited to 'macros/Hardware')
-rw-r--r--macros/Hardware/AVR/AVRPWMSetDuty.binbin0 -> 2428 bytes
-rw-r--r--macros/Hardware/AVR/AVRPWMSetDuty.sci24
-rw-r--r--macros/Hardware/AVR/libbin860 -> 884 bytes
-rw-r--r--macros/Hardware/AVR/names1
4 files changed, 25 insertions, 0 deletions
diff --git a/macros/Hardware/AVR/AVRPWMSetDuty.bin b/macros/Hardware/AVR/AVRPWMSetDuty.bin
new file mode 100644
index 0000000..f3c9e3e
--- /dev/null
+++ b/macros/Hardware/AVR/AVRPWMSetDuty.bin
Binary files differ
diff --git a/macros/Hardware/AVR/AVRPWMSetDuty.sci b/macros/Hardware/AVR/AVRPWMSetDuty.sci
new file mode 100644
index 0000000..0042540
--- /dev/null
+++ b/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/macros/Hardware/AVR/lib b/macros/Hardware/AVR/lib
index aa4d611..3e0137c 100644
--- a/macros/Hardware/AVR/lib
+++ b/macros/Hardware/AVR/lib
Binary files differ
diff --git a/macros/Hardware/AVR/names b/macros/Hardware/AVR/names
index afd171e..0e6aa63 100644
--- a/macros/Hardware/AVR/names
+++ b/macros/Hardware/AVR/names
@@ -2,6 +2,7 @@ AVRADCSetup
AVRDigitalIn
AVRDigitalOut
AVRDigitalSetup
+AVRPWMSetDuty
AVRPWMSetup
AVRReadADC
GetAVRSupportFunctions