summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c
diff options
context:
space:
mode:
authorsiddhu89902016-10-18 10:31:23 +0530
committersiddhu89902016-10-18 10:31:23 +0530
commitcdd9bf519d594b87c07193d2770b81a07829a50c (patch)
treec8985f43c314cafcfa04053a821116424d54c2a1 /2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c
parentf0ef5a2d4560f166751b58020ee5a2bc70904611 (diff)
downloadScilab2C-cdd9bf519d594b87c07193d2770b81a07829a50c.tar.gz
Scilab2C-cdd9bf519d594b87c07193d2770b81a07829a50c.tar.bz2
Scilab2C-cdd9bf519d594b87c07193d2770b81a07829a50c.zip
Suppressed declaration of not required variables and functions
Diffstat (limited to '2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c')
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c b/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c
index 5a7ccd15..0cca7a70 100644
--- a/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c
+++ b/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetModes.c
@@ -18,11 +18,11 @@
#include "types.h"
#include "RPIPeripheralPWM.h"
-uint8 u8RPIHardPWMSetModes(uint8 mode)
+void u8RPIHardPWMSetModes(uint8 mode)
{
if (mode == 1) /*mark/space mode*/
pwmSetMode(PWM_MODE_MS);
else
pwmSetMode(PWM_MODE_BAL);
- return 0;
+
}