diff options
author | siddhu8990 | 2017-04-19 14:28:34 +0530 |
---|---|---|
committer | siddhu8990 | 2017-04-19 14:28:34 +0530 |
commit | 586db6343e7b472d8dc3e63a82f4c73f99cdcbd7 (patch) | |
tree | e74d643b27634303e772074fc61a717ff400ac0a /2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci | |
parent | 645c51daadc9a5c9374b0465ded05f84bca65183 (diff) | |
download | Scilab2C-586db6343e7b472d8dc3e63a82f4c73f99cdcbd7.tar.gz Scilab2C-586db6343e7b472d8dc3e63a82f4c73f99cdcbd7.tar.bz2 Scilab2C-586db6343e7b472d8dc3e63a82f4c73f99cdcbd7.zip |
Merged Ashish's work
Diffstat (limited to '2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci')
-rw-r--r-- | 2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci b/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci deleted file mode 100644 index 0042540a..00000000 --- a/2.3-1/macros/Hardware/AVR/AVRPWMSetDuty.sci +++ /dev/null @@ -1,24 +0,0 @@ -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 |