Skip to content

Commit ad95d3c

Browse files
authoredDec 18, 2020
Merge pull request #541 from ROBOTIS-Will/patch-1
fix high speed communication issue
2 parents 29ab27c + 6371be0 commit ad95d3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎cores/arduino/SERCOM.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ void SERCOM::enableUART()
112112
void SERCOM::flushUART()
113113
{
114114
// Skip checking transmission completion if data register is empty
115-
if(isDataRegisterEmptyUART())
116-
return;
115+
// if(isDataRegisterEmptyUART())
116+
// return;
117117

118118
// Wait for transmission to complete
119119
while(!sercom->USART.INTFLAG.bit.TXC);

0 commit comments

Comments
 (0)
Please sign in to comment.