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/findDeps/getAllSources.sci | |
parent | 96b51a5ded447676d493be9721e4480065a5ae7e (diff) | |
download | scilab2c-4e3eef82b0aa598761e087925fabe835496ab3bc.tar.gz scilab2c-4e3eef82b0aa598761e087925fabe835496ab3bc.tar.bz2 scilab2c-4e3eef82b0aa598761e087925fabe835496ab3bc.zip |
Code generation for Arduino changed. DC motor added to Arduino
Diffstat (limited to 'macros/findDeps/getAllSources.sci')
-rw-r--r-- | macros/findDeps/getAllSources.sci | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/macros/findDeps/getAllSources.sci b/macros/findDeps/getAllSources.sci index 325d4b23..c8d6d0b4 100644 --- a/macros/findDeps/getAllSources.sci +++ b/macros/findDeps/getAllSources.sci @@ -822,6 +822,8 @@ function allSources = getAllSources(OutFormat) "src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c" "src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c" "src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c" + "src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c" + "src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c" "src/c/scilab-arduino/sleep/u16sleeps.c"]; //Files to be inserted only if output format selected is 'AVR'. @@ -831,6 +833,8 @@ function allSources = getAllSources(OutFormat) "src/c/hardware/avr/gpio/u8AVRDigitalIns.c" "src/c/hardware/avr/adc/u8AVRADCSetups.c" "src/c/hardware/avr/adc/u8AVRReadADCs.c" + "src/c/hardware/avr/pwm/u8AVRPWMSetups.c" + "src/c/hardware/avr/pwm/u8AVRPWMSetDutys.c" "src/c/hardware/avr/util/u16AVRSleeps.c" ]; |