From 0ce2c9f49c12e152c6c14f9c08e0bd80ba981a9f Mon Sep 17 00:00:00 2001 From: philsson Date: Sun, 9 Sep 2018 22:40:27 +0200 Subject: [PATCH] Adding pin definitions USART 2 works great --- src/targets/revo_f4/pins.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/targets/revo_f4/pins.h b/src/targets/revo_f4/pins.h index 5dd8d38..ce82d0c 100644 --- a/src/targets/revo_f4/pins.h +++ b/src/targets/revo_f4/pins.h @@ -36,6 +36,16 @@ typedef enum PIN_COMPASS_SCL = PB_8, PIN_COMPASS_SDA = PB_9, + // Flexiport - Needs fixing in m-bed + // PIN_USART3_RX = PB_10, + // PIN_USART4_TX = PB_11, + + PIN_USART2_RX = PA_3, // Servo 3 + PIN_USART2_TX = PA_2, // Servo 4 + + PIN_USART4_RX = PA_1, // Servo 5 + PIN_USART4_TX = PA_0, // Servo 6 + } PinMap; } // namespace revo_f4