1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Initial Arduino IDE based on Processing.

This commit is contained in:
David A. Mellis
2005-08-25 21:06:28 +00:00
commit 9fc5aa63f6
373 changed files with 71081 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#ifndef _DEBUG_H
#define _DEBUG_H
#include <progmem.h>
#include "global.h"
#define DEBUG_MODE_LCD 0x01
#define DEBUG_MODE_SERIAL 0x02
#define DEBUG_MODE_OSC 0x04
void debugInitLCD(u08 x, u08 y);
void debugInitOSC(void);
void debug(const char * fmt);
void debugFlash(u08 port, u08 pin);
#endif