Read a flash page from the specified target
(self)
| 121 | return self._cload.request_info_update(target_id) |
| 122 | |
| 123 | def read_cf1_config(self): |
| 124 | """Read a flash page from the specified target""" |
| 125 | target = self._cload.targets[0xFF] |
| 126 | config_page = target.flash_pages - 1 |
| 127 | |
| 128 | return self._cload.read_flash(addr=0xFF, page=config_page) |
| 129 | |
| 130 | def write_cf1_config(self, data): |
| 131 | target = self._cload.targets[0xFF] |
nothing calls this directly
no test coverage detected