probe-web / @probe-web/client / index / DownloadOptionsInput
Interface: DownloadOptionsInput
Defined in: index.ts:205
How probe-rs programs an image (probe-rs's DownloadOptions).
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
keepUnwrittenBytes | boolean | Preserve the parts of erased sectors the image does not cover (default false). | index.ts:207 |
doChipErase | boolean | Erase the whole chip instead of only the sectors being written (default false). | index.ts:209 |
skipErase | boolean | Write without erasing first, for flash that is already blank (default false). | index.ts:211 |
verify | boolean | Read the image back after programming (default true). | index.ts:213 |
disableDoubleBuffering | boolean | Do not overlap transferring and programming pages (default false); slower, but some flash algorithms need it. | index.ts:215 |
preferredAlgos | string[] | Names of flash algorithms to prefer when a chip has several (default none). | index.ts:217 |
ramChunkSize? | number | bigint | Size of the chunks copied to target RAM, in bytes (default: probe-rs's choice). | index.ts:219 |