| 309 | } |
| 310 | |
| 311 | uint32_t TDebugProtocol::writeByte(const int8_t byte) { |
| 312 | return writeItem("0x" + byte_to_hex(byte)); |
| 313 | } |
| 314 | |
| 315 | uint32_t TDebugProtocol::writeI16(const int16_t i16) { |
| 316 | return writeItem(to_string(i16)); |
nothing calls this directly
no test coverage detected