Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8a7a2a1

Browse files
committedJan 15, 2025
removing mbed devices from uart transport
Since automatically excluded from previous exclusion preprocessor if
1 parent b542628 commit 8a7a2a1

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed
 

‎src/utility/HCIUartTransport.cpp

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,8 @@
2121

2222
#include "HCIUartTransport.h"
2323

24-
#if defined(ARDUINO_PORTENTA_H7_M4)
25-
// SerialHCI is already defined in the variant
26-
#elif defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_NICLA_VISION)
27-
#define SerialHCI Serial2
28-
#elif defined(ARDUINO_OPTA)
29-
#define SerialHCI Serial3
30-
#elif defined(ARDUINO_PORTENTA_C33)
24+
#if defined(ARDUINO_PORTENTA_C33)
3125
#define SerialHCI Serial5
32-
#elif defined(ARDUINO_GIGA)
33-
arduino::UART SerialHCI(CYBSP_BT_UART_TX, CYBSP_BT_UART_RX, CYBSP_BT_UART_RTS, CYBSP_BT_UART_CTS);
3426
#else
3527
#error "Unsupported board selected!"
3628
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.