From 1ff0036dec68d12cbd2cc6b8c772ca64ca707669 Mon Sep 17 00:00:00 2001 From: "timecop@gmail.com" Date: Tue, 20 Aug 2013 11:44:49 +0000 Subject: [PATCH] oops! had pin definition wrong for Pin_0 and Pin_1, was using drv_gpio in another project and noticed it wasn't working very well :) git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@381 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61 --- src/drv_gpio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drv_gpio.h b/src/drv_gpio.h index 082a09311..bc3025f4f 100644 --- a/src/drv_gpio.h +++ b/src/drv_gpio.h @@ -21,8 +21,8 @@ typedef enum typedef enum { - Pin_0 = 0x0000, - Pin_1 = 0x0001, + Pin_0 = 0x0001, + Pin_1 = 0x0002, Pin_2 = 0x0004, Pin_3 = 0x0008, Pin_4 = 0x0010,