From 7d52a0cfb9342cc578cb0d46752b2ac1894e02f0 Mon Sep 17 00:00:00 2001 From: awenisko Date: Thu, 3 Sep 2015 18:30:06 +0200 Subject: [PATCH] Update wiring.h Defined INPUT_PULLUP mode. --- digistump-avr/cores/tiny/wiring.h | 1 + 1 file changed, 1 insertion(+) diff --git a/digistump-avr/cores/tiny/wiring.h b/digistump-avr/cores/tiny/wiring.h index 6946ab2..a1ef0c6 100644 --- a/digistump-avr/cores/tiny/wiring.h +++ b/digistump-avr/cores/tiny/wiring.h @@ -43,6 +43,7 @@ extern "C"{ #define INPUT 0x0 #define OUTPUT 0x1 +#define INPUT_PULLUP 0x2 #define true 0x1 #define false 0x0