blob: 875819537f7c7cbb3c03475315e66a98b9184e78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include_next <mcuconf.h>
// These are needed if the communication is on the SD1 USART, either with standard or alternate pins
#undef STM32_SERIAL_USE_USART1
#define STM32_SERIAL_USE_USART1 TRUE
// These are needed if the communication is on the SD2 USART, either with standard or alternate pins
#undef STM32_SERIAL_USE_USART2
#define STM32_SERIAL_USE_USART2 TRUE
|