git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@13733 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2020-07-06 06:26:40 +00:00
parent f7600db9c4
commit cca68aaaaa
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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).