Skip to content
Snippets Groups Projects
Commit 78f1d6b9 authored by Emilio Corigliano's avatar Emilio Corigliano
Browse files

[bsp] Fixed the hwmapping of stm32f767zi_gemini_motor

The pins for the usart1 and usart2 were inverted
parent ca0d670e
No related branches found
No related tags found
1 merge request!249[bsp] Fixed the hwmapping of stm32f767zi_gemini_motor
Pipeline #8300 passed
......@@ -53,14 +53,14 @@ using mosi = Gpio<GPIOE_BASE, 6>;
namespace usart1
{
using tx = Gpio<GPIOA_BASE, 2>;
using rx = Gpio<GPIOA_BASE, 3>;
using tx = Gpio<GPIOA_BASE, 9>;
using rx = Gpio<GPIOA_BASE, 10>;
} // namespace usart1
namespace usart2
{
using tx = Gpio<GPIOA_BASE, 9>;
using rx = Gpio<GPIOA_BASE, 10>;
using tx = Gpio<GPIOA_BASE, 2>;
using rx = Gpio<GPIOA_BASE, 3>;
} // namespace usart2
namespace can2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment