| 16 | static constexpr uint32_t SRIX_EEPROM_WRITE_DELAY_MS = 15; // Delay for write operation |
| 17 | |
| 18 | SRIXTool::SRIXTool() { |
| 19 | current_state = IDLE_MODE; |
| 20 | _dump_valid_from_read = false; |
| 21 | _dump_valid_from_load = false; |
| 22 | _tag_read = false; |
| 23 | setup(); |
| 24 | } |
| 25 | |
| 26 | SRIXTool::~SRIXTool() { delete nfc; } |
| 27 |
nothing calls this directly
no test coverage detected