| 17 | #include <Clock.h> |
| 18 | |
| 19 | AtClient::AtClient(HardwareSerial& stream) : stream(stream) |
| 20 | { |
| 21 | stream.onDataReceived(StreamDataReceivedDelegate(&AtClient::processor, this)); |
| 22 | } |
| 23 | |
| 24 | void AtClient::processor(Stream& source, char arrivedChar, uint16_t availableCharsCount) |
| 25 | { |
nothing calls this directly
no test coverage detected