source: rtos_arduino/trunk/arduino_lib/libraries/pubsubclient-2.6/tests/src/lib/Arduino.h@ 209

Last change on this file since 209 was 209, checked in by ertl-honda, 8 years ago

BlueMix用のフィアルを追加

File size: 371 bytes
Line 
1#ifndef Arduino_h
2#define Arduino_h
3
4#include <stdint.h>
5#include <stdlib.h>
6#include <string.h>
7#include <math.h>
8
9
10extern "C"{
11 typedef uint8_t byte ;
12 typedef uint8_t boolean ;
13
14 /* sketch */
15 extern void setup( void ) ;
16 extern void loop( void ) ;
17 uint32_t millis( void );
18}
19
20#define PROGMEM
21#define pgm_read_byte_near(x) *(x)
22
23#endif // Arduino_h
Note: See TracBrowser for help on using the repository browser.