diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2008-09-10 15:22:59 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2008-09-10 15:22:59 +0000 |
commit | 8af8938d41a86b655159736f8887aecac414e1ac (patch) | |
tree | 5fc8a025368bc681a8c728ebf6a06a9642e08167 /cores/wiring/WProgram.h | |
parent | 50009e64e5293f64acdeacb17a4c8f4e47c54d3e (diff) |
Removing wiring core since it's not being kept up-to-date.
Diffstat (limited to 'cores/wiring/WProgram.h')
-rwxr-xr-x | cores/wiring/WProgram.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/cores/wiring/WProgram.h b/cores/wiring/WProgram.h deleted file mode 100755 index 7837da5..0000000 --- a/cores/wiring/WProgram.h +++ /dev/null @@ -1,39 +0,0 @@ -extern "C" { - #include <inttypes.h> - #include <math.h> - #include <avr/io.h> - - #include "WConstants.h" - - // main program prototypes - void setup(void); - void loop(void); - - // timing prototypes - void delay(long); - void delayMicroseconds(unsigned int); - long millis(void); - - // pin prototypes - void pinMode(uint8_t, uint8_t); - uint8_t digitalRead(uint8_t); - void digitalWrite(int, uint8_t); - void portMode(int, int); - int portRead(int); - void portWrite(int, int); - int analogRead(int); - void analogWrite(int, int); - - // pulse prototypes - unsigned long pulseIn(int, int); - - // interrupt management prototypes - void attachInterrupt(uint8_t, void (*)(void) ); - void detachInterrupt(uint8_t); -} - -// random prototypes -float random(float); -float random(float, float); -void randomSeed(unsigned int); - |