my_serial_stream << "AT+CSQ" << '\r' ;
1234567
while( serial_port.rdbuf()->in_avail() > 0 ) { char next_byte; serial_port.get(next_byte); std::cerr << std::hex << (int)next_byte << " "; } std::cerr << std::endl;