| 33 | UInt8 followingType() { return packet.available() ? STRING : END; } |
| 34 | |
| 35 | bool readOne(UInt8 type, DataWriter& writer) { |
| 36 | // read/write all |
| 37 | writer.writeString(STR packet.current(),packet.available()); |
| 38 | packet.next(packet.available()); |
| 39 | return true; |
| 40 | } |
| 41 | |
| 42 | }; |
| 43 |
nothing calls this directly
no test coverage detected