diff options
author | bnewbold <bnewbold@robocracy.org> | 2010-05-21 16:14:00 -0700 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2010-05-21 16:14:00 -0700 |
commit | f30bc0ea864e8f3ae04f198b4a3d58b34cc5efd3 (patch) | |
tree | 7d15e6b873f221b4fcf4812165b04f42bf832b83 | |
parent | 73444bbbe2aebb9d2d4ed62e52f6fde69532bbeb (diff) | |
download | librambutan-f30bc0ea864e8f3ae04f198b4a3d58b34cc5efd3.tar.gz librambutan-f30bc0ea864e8f3ae04f198b4a3d58b34cc5efd3.zip |
get wirish_math stuff going (random, map, etc)
Perry, you might want to look this over... I only include the contents
of wirish_math.h when cpp? It's what arduino does and it works, so...
-rwxr-xr-x | copy-to-ide | 76 | ||||
-rw-r--r-- | wirish/WProgram.h | 1 | ||||
-rw-r--r-- | wirish/wirish.h | 1 | ||||
-rw-r--r-- | wirish/wirish_math.h | 3 |
4 files changed, 18 insertions, 63 deletions
diff --git a/copy-to-ide b/copy-to-ide index b14b8bd..bd531e2 100755 --- a/copy-to-ide +++ b/copy-to-ide @@ -9,74 +9,26 @@ DEST=`pwd`/../maple-ide/hardware/leaflabs/cores/maple/ ARCH=`uname -a` FILES="LICENSE - ./libmaple/nvic.h - ./libmaple/util.h - ./libmaple/adc.h - ./libmaple/usb_regs.h - ./libmaple/rcc.h - ./libmaple/exti.h - ./libmaple/usart.h - ./libmaple/usb.h - ./libmaple/timers.h - ./libmaple/bootVect.h - ./libmaple/systick.h - ./libmaple/flash.h - ./libmaple/spi.h - ./libmaple/gpio.h - ./libmaple/libmaple.h - ./libmaple/libmaple_types.h - ./libmaple/rcc.c - ./libmaple/exti.c - ./libmaple/syscalls.c - ./libmaple/usart.c - ./libmaple/systick.c - ./libmaple/util.c - ./libmaple/exc.c - ./libmaple/nvic.c - ./libmaple/spi.c - ./libmaple/timers.c - ./libmaple/usb.c - ./libmaple/adc.c - ./libmaple/flash.c - ./libmaple/gpio.c - ./wirish/bits.h - ./wirish/ext_interrupts.c - ./wirish/ext_interrupts.h - ./wirish/io.h + ./libmaple/*.h + ./libmaple/*.c + ./wirish/*.h + ./wirish/*.c ./wirish/main.cxx - ./wirish/Print.cpp - ./wirish/Print.h - ./wirish/pwm.c - ./wirish/pwm.h - ./wirish/time.c - ./wirish/time.h - ./wirish/wirish_analog.c - ./wirish/wirish.c - ./wirish/wirish_digital.c - ./wirish/wirish.h - ./wirish/wirish_math.cpp - ./wirish/wirish_math.h - ./wirish/wirish_shift.c - ./wirish/WProgram.h - ./wirish/cxxabi-compat.cpp - ./wirish/comm/HardwareSerial.cpp - ./wirish/comm/HardwareSerial.h - ./wirish/comm/HardwareSPI.cpp - ./wirish/comm/HardwareSPI.h - ./wirish/comm/HardwareUsb.cpp - ./wirish/comm/HardwareUsb.h" + ./wirish/*.cpp + ./wirish/comm/*.cpp + ./wirish/comm/*.h" -# First see if this folder exists +echo "First make sure DEST exists: $DEST" if !(test -d $DEST/lanchon-stm32) then mkdir $DEST/lanchon-stm32 fi -# Then copy over linker files -cp -v stm32conf/* $DEST -cp -v stm32conf/lanchon-stm32/* $DEST/lanchon-stm32 +echo "Then copy over linker files..." +cp stm32conf/* $DEST +cp stm32conf/lanchon-stm32/* $DEST/lanchon-stm32 -# Finally delete and copy the source files +echo "Finally delete the old and copy the new source files!" rm $DEST/*.c $DEST/*.cpp $DEST/*.h $DEST/*.cxx -cp -v $FILES $DEST - +cp $FILES $DEST +echo "Done." diff --git a/wirish/WProgram.h b/wirish/WProgram.h index 6f0b913..5445518 100644 --- a/wirish/WProgram.h +++ b/wirish/WProgram.h @@ -25,7 +25,6 @@ #include "wirish.h" #include "HardwareSerial.h" #include "HardwareUsb.h" -#include "math.h" #include "usb.h" void setup(); diff --git a/wirish/wirish.h b/wirish/wirish.h index 5129c26..f54517a 100644 --- a/wirish/wirish.h +++ b/wirish/wirish.h @@ -38,6 +38,7 @@ #include "time.h" #include "pwm.h" #include "ext_interrupts.h" +#include "wirish_math.h" #ifdef __cplusplus extern "C"{ diff --git a/wirish/wirish_math.h b/wirish/wirish_math.h index 19f3892..8746d01 100644 --- a/wirish/wirish_math.h +++ b/wirish/wirish_math.h @@ -27,6 +27,8 @@ #include <math.h> +#ifdef __cplusplus + void randomSeed(unsigned int); long random(long); long random(long, long); @@ -54,3 +56,4 @@ long map(long, long, long, long, long); #endif +#endif |