From 0f07ed5e2d4a4b396066a739bc128da2e089db6d Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 10 Aug 2019 13:25:08 -0400 Subject: [PATCH] low side channels on MRE #900 progress - at least something is blinking now --- firmware/hw_layer/smart_gpio.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/firmware/hw_layer/smart_gpio.cpp b/firmware/hw_layer/smart_gpio.cpp index 81dc14116a..22c1043331 100644 --- a/firmware/hw_layer/smart_gpio.cpp +++ b/firmware/hw_layer/smart_gpio.cpp @@ -119,10 +119,17 @@ struct tle8888_config tle8888_cfg = { }, .reset = {.port = NULL, .pad = 0}, .direct_io = { + [0] = {.port = GPIOE, .pad = 10, .output = 21}, + [1] = {.port = GPIOE, .pad = 9, .output = 22}, + [2] = {.port = GPIOE, .pad = 8, .output = 23}, + [3] = {.port = GPIOE, .pad = 7, .output = 24}, + [0] = {.port = NULL, .pad = 0, .output = 20}, +/* [0] = {.port = NULL, .pad = 0, .output = 9}, [1] = {.port = NULL, .pad = 0, .output = 10}, [2] = {.port = NULL, .pad = 0, .output = 11}, [3] = {.port = NULL, .pad = 0, .output = 12}, +*/ }, }; #endif