From 767d8dd024c07576e7dd6016a66a26f39bb5822b Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 17 Sep 2017 11:21:26 -0500 Subject: [PATCH] added missing pullup on gpio 27 Former-commit-id: e3f51d4d3edc414c6fafd2460c32f07a631a8f11 Former-commit-id: c6015fbeb1ca28d89af9c7f75524288bc12211e6 --- sdl1090/init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdl1090/init.c b/sdl1090/init.c index ddb6d27..e271aa3 100644 --- a/sdl1090/init.c +++ b/sdl1090/init.c @@ -11,6 +11,8 @@ void init(char *title) pullUpDnControl (23, PUD_UP); pinMode(22, INPUT); pullUpDnControl (22, PUD_UP); + pinMode(27, INPUT); + pullUpDnControl (27, PUD_UP); putenv((char*)"FRAMEBUFFER=/dev/fb1"); putenv((char*)"SDL_FBDEV=/dev/fb1");