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
As of the latest commit 436ac5c of #87, it is now necessary to specify the device for each read/write operation, even if only one device is attached. IMHO, in the case of a single device, it should be selected automatically.
$ ./dpcmd -d
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Jul 31 2024
Device 1 (SF628665): detecting chip
By reading the chip ID, the chip applies to [ W25Q128BV W25Q128FV S25FL128K W25R128FV W25R128JV W25Q128JV ]
W25Q128BV chip size is 16777216 bytes.
$ ./dpcmd -r test.rom
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Jul 31 2024
Error: Programmers are not connected.
[sylv SF100Linux]$ ./dpcmd --device 1 -r test.rom
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Jul 31 2024
By reading the chip ID, the chip applies to [ W25Q128BV ]
W25Q128BV parameters to be applied by default
W25Q128BV chip size is 16777216 bytes.
Reading, please wait ...
Device 1 (SF628665):
13.2s elapsed
Device 1 (SF628665):
Read OK
Successfully saved into file:test.rom
The text was updated successfully, but these errors were encountered:
$ dpcmd --list-device-id 0
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Aug 12 2024
1, SF700703
2, SF700704
$ dpcmd --list-device-id 1
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Aug 12 2024
1, SF700703
$ dpcmd --list-device-id 2
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Aug 12 2024
2, SF700704
After:
$ dpcmd --list-device-id 0
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Aug 12 2024
Error: Programmers are not connected.
Command exited with non-zero status 12
$ dpcmd --list-device-id 1
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Aug 12 2024
Error: Programmers are not connected.
Command exited with non-zero status 12
$ dpcmd --list-device-id 2
DpCmd Linux 1.14.20.12 Engine Version:
Last Built on Aug 12 2024
Error: Programmers are not connected.
Command exited with non-zero status 12
As of the latest commit 436ac5c of #87, it is now necessary to specify the device for each read/write operation, even if only one device is attached. IMHO, in the case of a single device, it should be selected automatically.
The text was updated successfully, but these errors were encountered: