mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
2fa8deb92d
Compilation still has problems (Thread error on success, and can't handle non-pde files in a sketch). Modified the Mac OS X make.sh to copy the hardware, avr tools, and example over. Removing some of the antlr stuff. Disabling the Commander (command-line execution) for now. Added Library, LibraryManager, and Target. Added support for prefixed preferences (e.g. for boards and programmers).
29 lines
538 B
C
Executable File
29 lines
538 B
C
Executable File
#ifndef WProgram_h
|
|
#define WProgram_h
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include <avr/interrupt.h>
|
|
|
|
#include "wiring.h"
|
|
|
|
#ifdef __cplusplus
|
|
#include "HardwareSerial.h"
|
|
|
|
uint16_t makeWord(uint16_t w);
|
|
uint16_t makeWord(byte h, byte l);
|
|
|
|
#define word(...) makeWord(__VA_ARGS__)
|
|
|
|
unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout = 1000000L);
|
|
|
|
// WMath prototypes
|
|
long random(long);
|
|
long random(long, long);
|
|
void randomSeed(unsigned int);
|
|
long map(long, long, long, long, long);
|
|
#endif
|
|
|
|
#endif |