Skip to content

Commit 032d095

Browse files
committed
cores/xmc: Write function with buf and size.
Signed-off-by: MDin <[email protected]>
1 parent 03ad4ea commit 032d095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/xmc/Uart.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ class Uart : public HardwareSerial {
9595
void IrqHandler(void);
9696

9797
private:
98-
bool serial_ready = false;
9998
static constexpr size_t BUF_LENGTH = 512;
10099
RingBufferN<BUF_LENGTH> _rx_buffer;
100+
bool serial_ready = false;
101101
};
102102

103103
extern Uart Serial;

0 commit comments

Comments
 (0)