Set of Files to enable some Arduino examples.

Dependents:   TFT_Touch_botao_v1 TFT_Touch_exemplo5_git_touch TESTE_1 TFT_Touch_exemplo6_git_touch_button_3_

Committer:
davidprentice
Date:
Mon Apr 26 14:52:27 2021 +0000
Revision:
0:5952bbaff1c6
Child:
1:9261d641453c
initial set of files to enable Arduino examples

Who changed what in which revision?

UserRevisionLine numberNew contents of line
davidprentice 0:5952bbaff1c6 1 #ifndef _WPROGRAM_H
davidprentice 0:5952bbaff1c6 2 #define _WPROGRAM_H
davidprentice 0:5952bbaff1c6 3
davidprentice 0:5952bbaff1c6 4 #define ARDUINO 100
davidprentice 0:5952bbaff1c6 5 #include "Arduino.h"
davidprentice 0:5952bbaff1c6 6 #include <string>
davidprentice 0:5952bbaff1c6 7 #define __FlashStringHelper char
davidprentice 0:5952bbaff1c6 8 #include "Print.h"
davidprentice 0:5952bbaff1c6 9 #define boolean bool
davidprentice 0:5952bbaff1c6 10 #define __builtin_bswap16(x) ( ((x)<<8) | ((x)>>8) )
davidprentice 0:5952bbaff1c6 11 #endif