From 34ac4f0d912c71d6ab2447df4df4d0868deda406 Mon Sep 17 00:00:00 2001 From: coreglitch Date: Wed, 13 Jan 2021 03:24:57 +0600 Subject: [PATCH] fix gpio set (#305) --- applications/gpio-tester/gpio-tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/gpio-tester/gpio-tester.c b/applications/gpio-tester/gpio-tester.c index e21deb75..ab971e4c 100644 --- a/applications/gpio-tester/gpio-tester.c +++ b/applications/gpio-tester/gpio-tester.c @@ -8,8 +8,8 @@ typedef struct { const GpioItem GPIO_PINS[] = { {"1.2: PA7", {GPIOA, GPIO_PIN_7}}, {"1.3: PA6", {GPIOA, GPIO_PIN_6}}, - {"1.4: PA5", {GPIOA, GPIO_PIN_5}}, - {"1.5: PA4", {GPIOA, GPIO_PIN_4}}, + {"1.4: PA4", {GPIOA, GPIO_PIN_4}}, + {"1.5: PB3", {GPIOB, GPIO_PIN_3}}, {"1.6: PB2", {GPIOB, GPIO_PIN_2}}, {"1.7: PC3", {GPIOC, GPIO_PIN_3}},