forked from floratest1/SpireCV
Serial port optimization
Reduce about 1/3 of the serial port overhead Signed-off-by: AiYangSky <1732570904@qq.com>
This commit is contained in:
parent
954551aa3f
commit
48f29e78f7
|
@ -39,9 +39,8 @@ public:
|
||||||
|
|
||||||
virtual bool inPutByte(IN uint8_t *byte)
|
virtual bool inPutByte(IN uint8_t *byte)
|
||||||
{
|
{
|
||||||
if (ser->available() > 0)
|
if(ser->read(byte, 1))
|
||||||
{
|
{
|
||||||
ser->read(byte, 1);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue