| 116 | |
| 117 | #if 0 |
| 118 | void pbuf(const void *buf, uint32_t len) |
| 119 | { |
| 120 | const uint8_t *p = (const uint8_t *)buf; |
| 121 | do { |
| 122 | Serial.printf("%02X ", *p++); |
| 123 | } while (--len > 0); |
| 124 | Serial.println(); |
| 125 | } |
| 126 | #endif |
| 127 | |
| 128 | SerialFlashFile SerialFlashChip::open(const char *filename) |
nothing calls this directly
no outgoing calls
no test coverage detected