You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -191,6 +191,14 @@ To install the XDS110 USB drivers.
191
191
nanoff --installxdsdrivers
192
192
```
193
193
194
+
### Pre-check if target fits connected device
195
+
196
+
The tool tries to make a best effort sanity check on whether the requested target fits the connected target.
197
+
Sometimes that's not possible because of the differences and variations on the target names, or lack of details provided by the connected device or even (like with DFU connected devices) because it's not possible to determine exactly what device is connected at all.
198
+
This doesn't necessarily mean that the firmware wont' work, so take this as an advice only.
199
+
200
+
To disable this validation add `--nofitcheck` option to the command line.
201
+
194
202
### Tool output verbosity
195
203
196
204
The tool output verbosity can be set through the `v|verbosity` option.
Copy file name to clipboardExpand all lines: nanoFirmwareFlasher/Options.cs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -271,6 +271,13 @@ public class Options
271
271
HelpText="Perform reset on connected device after all other requested operations are successfully performed.")]
272
272
publicboolResetMcu{get;set;}
273
273
274
+
[Option(
275
+
"nofitcheck",
276
+
Required=false,
277
+
Default=false,
278
+
HelpText="Skip execution of sanity check if the requested target fits the connected device. This is a best effort validation and it's NOT guaranted to be fail safe.")]
0 commit comments