From cca68aaaaaaa3e93eedbfcc3a7c35101fe61943b Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Mon, 6 Jul 2020 06:26:40 +0000 Subject: [PATCH] Fixed bug #1108. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@13733 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/boards/ST_EVB_SPC563M/board.h | 6 +++--- readme.txt | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/os/hal/boards/ST_EVB_SPC563M/board.h b/os/hal/boards/ST_EVB_SPC563M/board.h index 4b31cf598..58f718991 100644 --- a/os/hal/boards/ST_EVB_SPC563M/board.h +++ b/os/hal/boards/ST_EVB_SPC563M/board.h @@ -37,12 +37,12 @@ /* * I/O definitions. */ -#define P5_ESCI_A_TX 9 -#define P5_ESCI_A_RX 10 +#define P5_ESCI_A_TX 3 /* SCI_A_TX==GPIO[83] */ +#define P5_ESCI_A_RX 4 /* SCI_A_RX==GPIO[84] */ #define P11_BUTTON1 3 #define P11_BUTTON2 5 #define P11_BUTTON3 7 -#define P11_BUTTON4 9 +#define P11_BUTTON4 11 /* GPIO[187] */ #define P11_LED1 12 #define P11_LED2 13 #define P11_LED3 14 diff --git a/readme.txt b/readme.txt index 810bf6584..06ce46e79 100644 --- a/readme.txt +++ b/readme.txt @@ -77,6 +77,7 @@ - NEW: Added a new setting to STM32 USBv1 allowing for some clock deviation from 48MHz. Renamed setting USB_HOST_WAKEUP_DURATION to STM32_USB_HOST_WAKEUP_DURATION for consistency. +- FIX: Fixed wrong definitions in SPC563M board files (bug #1108). - FIX: Fixed cortex-M vectors table alignment problem (bug #1107). - FIX: Fixed extra condition in MAC driver macWaitTransmitDescriptor() function (bug #1106).