fix meat pack internal buffer for multi serial

This commit is contained in:
Victor Mateus Oliveira
2021-03-09 20:21:49 -03:00
committed by Scott Lahteine
parent 28a136d7f4
commit bb6d718e19
2 changed files with 2 additions and 1 deletions

View File

@ -288,6 +288,7 @@ inline bool any_serial_data_available() {
LOOP_L_N(p, NUM_SERIAL)
if (serial_data_available(p))
return true;
return false;
}
inline int read_serial(const serial_index_t index) { return SERIAL_IMPL.read(index); }