diff options
author | siddhu8990 | 2015-12-17 14:48:36 +0530 |
---|---|---|
committer | siddhu8990 | 2015-12-17 14:48:36 +0530 |
commit | 4e3eef82b0aa598761e087925fabe835496ab3bc (patch) | |
tree | 5b046acee2453c83fc1d776221373c3992147e7a /macros/Hardware | |
parent | 96b51a5ded447676d493be9721e4480065a5ae7e (diff) | |
download | Scilab2C_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.bin | bin | 0 -> 2428 bytes | |||
-rw-r--r-- | macros/Hardware/AVR/AVRPWMSetDuty.sci | 24 | ||||
-rw-r--r-- | macros/Hardware/AVR/lib | bin | 860 -> 884 bytes | |||
-rw-r--r-- | macros/Hardware/AVR/names | 1 |
4 files changed, 25 insertions, 0 deletions
diff --git a/macros/Hardware/AVR/AVRPWMSetDuty.bin b/macros/Hardware/AVR/AVRPWMSetDuty.bin Binary files differnew file mode 100644 index 0000000..f3c9e3e --- /dev/null +++ b/macros/Hardware/AVR/AVRPWMSetDuty.bin 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 Binary files differindex aa4d611..3e0137c 100644 --- a/macros/Hardware/AVR/lib +++ b/macros/Hardware/AVR/lib 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 |