Good afternoon, I'm doing an exercise that involves Serial Port, send and receive a chain, when sending the chain all right, but when I receive it I get it in 2 parts, both devices have the same configuration.
PuertoAP->setBaudRate(QSerialPort::Baud115200);
PuertoAP->setDataBits(QSerialPort::Data8);
PuertoAP->setParity(QSerialPort::NoParity);
PuertoAP->setStopBits(QSerialPort::OneStop);
PuertoAP->setFlowControl(QSerialPort::NoFlowControl);
It is a chain of 15 data, first arrive 8 and then 7, if I put the size of the string to 24 I split the chain into 3 parts of 8 data, Does anyone know what is due? Thank you very much for your time.