From 72e9f39fbde96b484338cbbd785680e5ab4a2e72 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Sat, 6 Oct 2007 14:09:02 +0000 Subject: Renaming core to targets. --- core/wiring/WProgram.h | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100755 core/wiring/WProgram.h (limited to 'core/wiring/WProgram.h') diff --git a/core/wiring/WProgram.h b/core/wiring/WProgram.h deleted file mode 100755 index 7837da5..0000000 --- a/core/wiring/WProgram.h +++ /dev/null @@ -1,39 +0,0 @@ -extern "C" { - #include - #include - #include - - #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); - -- cgit v1.2.3-18-g5258