nrflash 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nrflash-1.0.0/LICENSE-APACHE +201 -0
- nrflash-1.0.0/PKG-INFO +251 -0
- nrflash-1.0.0/README.md +224 -0
- nrflash-1.0.0/STUB_LICENSE-APACHE +201 -0
- nrflash-1.0.0/STUB_LICENSE-MIT +21 -0
- nrflash-1.0.0/pyproject.toml +41 -0
- nrflash-1.0.0/setup.cfg +4 -0
- nrflash-1.0.0/src/nrflash/__init__.py +6 -0
- nrflash-1.0.0/src/nrflash/__main__.py +4 -0
- nrflash-1.0.0/src/nrflash/cdc_reset.py +96 -0
- nrflash-1.0.0/src/nrflash/cli.py +759 -0
- nrflash-1.0.0/src/nrflash/rom_loader.py +469 -0
- nrflash-1.0.0/src/nrflash/stub_flasher_data.py +1860 -0
- nrflash-1.0.0/src/nrflash/uart_reset.py +76 -0
- nrflash-1.0.0/src/nrflash/usb_device.py +762 -0
- nrflash-1.0.0/src/nrflash.egg-info/PKG-INFO +251 -0
- nrflash-1.0.0/src/nrflash.egg-info/SOURCES.txt +19 -0
- nrflash-1.0.0/src/nrflash.egg-info/dependency_links.txt +1 -0
- nrflash-1.0.0/src/nrflash.egg-info/entry_points.txt +2 -0
- nrflash-1.0.0/src/nrflash.egg-info/requires.txt +1 -0
- nrflash-1.0.0/src/nrflash.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
nrflash-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nrflash
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Termux-native .bin flasher for ESP32/ESP8266 boards — no root, no esptool.py subprocess, no pyserial.
|
|
5
|
+
Author: 7wp81x
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/7wp81x/Termux-ESP-Flasher
|
|
8
|
+
Project-URL: Repository, https://github.com/7wp81x/Termux-ESP-Flasher
|
|
9
|
+
Project-URL: Issues, https://github.com/7wp81x/Termux-ESP-Flasher/issues
|
|
10
|
+
Keywords: esp32,esp8266,termux,flasher,esptool,no-root,android
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Operating System :: Android
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Topic :: Software Development :: Embedded Systems
|
|
19
|
+
Classifier: Topic :: System :: Hardware
|
|
20
|
+
Requires-Python: >=3.8
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE-APACHE
|
|
23
|
+
License-File: STUB_LICENSE-APACHE
|
|
24
|
+
License-File: STUB_LICENSE-MIT
|
|
25
|
+
Requires-Dist: pyusb>=1.2.1
|
|
26
|
+
Dynamic: license-file
|
|
27
|
+
|
|
28
|
+
# Termux-ESP-Flasher
|
|
29
|
+
|
|
30
|
+
A Termux-native `.bin` flasher for ESP32 boards — no root, no
|
|
31
|
+
`esptool.py` subprocess, no pyserial.
|
|
32
|
+
|
|
33
|
+
Covers **two** device families, auto-detected from the USB VID:PID:
|
|
34
|
+
|
|
35
|
+
- **Native USB CDC** — ESP32-S3 / C3 / S2 (`303A:1001` / `303A:0002`).
|
|
36
|
+
Talks directly to the chip's USB-Serial-JTAG peripheral; bootloader
|
|
37
|
+
entry/exit is driven by `cdc_reset.py`.
|
|
38
|
+
- **UART bridge** — classic ESP32 and ESP8266 devkits behind a
|
|
39
|
+
CP2102, CH340/CH340G, CH9102, or FTDI FT232 bridge chip. The bridge
|
|
40
|
+
is opened over raw USB (same fd-wrapping as the native path — Termux
|
|
41
|
+
never gives you a `/dev/ttyUSB*` node without root, so this isn't
|
|
42
|
+
optional) and its DTR/RTS lines are pulsed in the classic GPIO0+EN
|
|
43
|
+
pattern by `uart_reset.py`.
|
|
44
|
+
|
|
45
|
+
Both paths upload the real ESP-IDF RAM stub for faster block writes, and
|
|
46
|
+
both fall back automatically to the plain ROM bootloader if the stub
|
|
47
|
+
fails to load for any reason.
|
|
48
|
+
|
|
49
|
+
## Why this exists instead of just running esptool.py
|
|
50
|
+
|
|
51
|
+
`esptool.py` talks over pyserial, which expects a `/dev/ttyUSB*` or
|
|
52
|
+
`/dev/ttyACM*` node. On stock no-root Termux there often isn't one —
|
|
53
|
+
Android hands USB access to apps as a raw file descriptor via
|
|
54
|
+
`termux-usb`, not a serial device node. This tool talks straight to the
|
|
55
|
+
USB endpoints (and, for UART-bridge boards, straight to the bridge
|
|
56
|
+
chip's own vendor registers) instead of assuming a tty exists.
|
|
57
|
+
|
|
58
|
+
**If you're on a desktop/laptop Linux box with a real `/dev/ttyUSB*`
|
|
59
|
+
node, just use real `esptool.py` — it's more battle-tested.** This tool
|
|
60
|
+
exists for the no-root-Termux gap esptool's pyserial transport can't
|
|
61
|
+
reach.
|
|
62
|
+
|
|
63
|
+
## What's supported
|
|
64
|
+
|
|
65
|
+
- **Chip auto-detection.** `--chip` is optional on `probe`, `write`, and
|
|
66
|
+
`verify` — omit it and the tool syncs with the ROM bootloader, reads
|
|
67
|
+
the chip's magic-value register, and picks the right chip for you.
|
|
68
|
+
Pass `--chip` explicitly to override (still required for
|
|
69
|
+
`erase-info`, which never touches hardware).
|
|
70
|
+
- **Stub loader.** Both native-USB and UART-bridge sessions upload the
|
|
71
|
+
real ESP-IDF RAM stub after syncing, switching from 1 KiB ROM-only
|
|
72
|
+
blocks to 16 KiB stub blocks. Falls back to ROM-only if the stub
|
|
73
|
+
upload doesn't succeed for some reason — flashing still works, just
|
|
74
|
+
slower.
|
|
75
|
+
- **Automatic baud renegotiation on UART-bridge boards.** Once the stub
|
|
76
|
+
is running, the tool steps up through 921600 → 460800 → 230400 baud,
|
|
77
|
+
verifying each one actually holds (a cheap `sync()`) before trusting
|
|
78
|
+
it. If a candidate rate doesn't hold, it physically re-enters the ROM
|
|
79
|
+
bootloader and rebuilds the whole session at 115200 before trying the
|
|
80
|
+
next slower candidate — a bad guess costs a couple seconds, not the
|
|
81
|
+
whole flash. Settles on whatever your specific board/cable can
|
|
82
|
+
actually sustain, or stays at 115200 if nothing higher works. Native
|
|
83
|
+
USB CDC boards skip this entirely — there's no real UART clock
|
|
84
|
+
underneath USB CDC, so baud rate doesn't mean anything there.
|
|
85
|
+
- **Live progress.** The flash progress bar streams in real time on the
|
|
86
|
+
no-root Termux fd-bootstrap path — earlier builds buffered progress
|
|
87
|
+
updates invisibly until the transfer finished, then dumped the whole
|
|
88
|
+
bar at once, which looked like a stall.
|
|
89
|
+
- **Multi-file writes in one session.** `write` accepts one or more
|
|
90
|
+
`OFFSET:FILE` pairs and flashes all of them under a single USB
|
|
91
|
+
permission prompt / bootloader handshake.
|
|
92
|
+
|
|
93
|
+
## Scope / limitations (read before filing an issue)
|
|
94
|
+
|
|
95
|
+
- **No full-chip erase command.** `erase-info` explains why: an erase
|
|
96
|
+
that gets interrupted by a flaky OTG connection mid-operation has no
|
|
97
|
+
recovery path. Flash a full image (bootloader + partition table +
|
|
98
|
+
app) at the correct offsets instead of erasing first. `write --erase`
|
|
99
|
+
will erase exactly the bytes about to be overwritten via
|
|
100
|
+
`ERASE_REGION` if the ROM supports it, falling back silently to
|
|
101
|
+
`flash_begin`'s own per-block erase otherwise.
|
|
102
|
+
- **Auto-detection is a best-effort heuristic**, not a guarantee for
|
|
103
|
+
every silicon revision — it reads the chip magic value at a register
|
|
104
|
+
address that's held true across ESP32/S2/S3/C3 for years, but an
|
|
105
|
+
unrecognized value means "pass `--chip` explicitly," not a guess.
|
|
106
|
+
- **Stub data is vendored for more chips than are currently wired up**
|
|
107
|
+
(`esp32c2`, `c5`, `c6`, `c61`, `h2`, `h4`, `p4`, `s31` all have stub
|
|
108
|
+
binaries already sitting in `stub_flasher_data.py`), but
|
|
109
|
+
`CHIP_PARAMS`/`KNOWN_MAGIC`/`CHIP_CHOICES` only cover `esp32`,
|
|
110
|
+
`esp8266`, `esp32s2`, `esp32s3`, `esp32c3` today. Wiring up one of the
|
|
111
|
+
others means adding its real chip-magic value and SPI-attach params —
|
|
112
|
+
open an issue (or ask) with the specific chip if you need one.
|
|
113
|
+
|
|
114
|
+
## Install
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
pkg update && pkg install python termux-api libusb
|
|
118
|
+
pip install nrflash
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
`pip install nrflash` pulls in `pyusb` automatically. `termux-api` and
|
|
122
|
+
`libusb` are system packages `pip` can't install for you — they still need
|
|
123
|
+
`pkg install`, and the **Termux:API** app from
|
|
124
|
+
[F-Droid](https://f-droid.org) (not the Play Store) must be installed
|
|
125
|
+
separately for the no-root USB-permission flow to work at all.
|
|
126
|
+
|
|
127
|
+
<details>
|
|
128
|
+
<summary>Installing from source instead</summary>
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
git clone https://github.com/7wp81x/Termux-ESP-Flasher
|
|
132
|
+
cd Termux-ESP-Flasher
|
|
133
|
+
pip install .
|
|
134
|
+
```
|
|
135
|
+
</details>
|
|
136
|
+
|
|
137
|
+
## Usage
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
chmod +x nrflash
|
|
141
|
+
|
|
142
|
+
# --chip is optional everywhere except erase-info - omit it to auto-detect
|
|
143
|
+
./nrflash probe
|
|
144
|
+
./nrflash write --offset 0x0 firmware.bin
|
|
145
|
+
|
|
146
|
+
# Still works if you want to force a specific chip
|
|
147
|
+
./nrflash write --chip esp32c3 --offset 0x0 firmware.bin
|
|
148
|
+
|
|
149
|
+
# Flash + MD5-verify against the device afterward
|
|
150
|
+
./nrflash write --chip esp32s3 --offset 0x0 firmware.bin --verify
|
|
151
|
+
|
|
152
|
+
# Flash a sub-image at a partition offset (e.g. app partition only)
|
|
153
|
+
./nrflash write --offset 0x10000 app.bin
|
|
154
|
+
|
|
155
|
+
# Flash bootloader + partition table + app in one session
|
|
156
|
+
./nrflash write 0x0:bootloader.bin 0x8000:partitions.bin 0x10000:app.bin
|
|
157
|
+
|
|
158
|
+
# Stand-alone MD5 check against a file already on disk
|
|
159
|
+
./nrflash verify --chip esp32c3 --offset 0x0 firmware.bin
|
|
160
|
+
|
|
161
|
+
# Explicitly erase the write range first via ERASE_REGION
|
|
162
|
+
./nrflash write --offset 0x0 firmware.bin --erase
|
|
163
|
+
|
|
164
|
+
# Stay in the bootloader after flashing instead of rebooting
|
|
165
|
+
./nrflash write --offset 0x0 firmware.bin --no-reboot
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
First run on no-root Termux pops the same USB permission dialog every
|
|
169
|
+
time — tap **OK**. The permission persists until you unplug.
|
|
170
|
+
|
|
171
|
+
## What actually flashes — single binary vs. esptool's three images
|
|
172
|
+
|
|
173
|
+
Real `esptool.py write_flash` usually takes **three** files at three
|
|
174
|
+
offsets (bootloader, partition table, app), e.g.:
|
|
175
|
+
|
|
176
|
+
```
|
|
177
|
+
0x0 bootloader.bin
|
|
178
|
+
0x8000 partition-table.bin
|
|
179
|
+
0x10000 app.bin
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
`nrflash write` can take all three in one call (see the multi-file
|
|
183
|
+
example above), or one file per invocation if you prefer. If your build
|
|
184
|
+
only produces a single merged/combined `.bin` (PlatformIO can do this —
|
|
185
|
+
check for a `firmware.factory.bin` or similar after `pio run`), one call
|
|
186
|
+
at `0x0` is all you need.
|
|
187
|
+
|
|
188
|
+
## How bootloader entry works
|
|
189
|
+
|
|
190
|
+
- **UART-bridge boards** (CP2102/CH340/CH9102/FTDI) have real DTR/RTS
|
|
191
|
+
lines wired into EN/BOOT. `usb_device.py`'s `init_uart_bridge()`
|
|
192
|
+
configures the bridge's line coding and baud divisor via its own
|
|
193
|
+
vendor control transfers, then `uart_reset.py` pulses DTR/RTS in the
|
|
194
|
+
classic auto-reset pattern.
|
|
195
|
+
- **Native USB CDC boards** have no bridge chip — the chip's internal
|
|
196
|
+
USB-Serial-JTAG peripheral watches the CDC class's
|
|
197
|
+
`SET_CONTROL_LINE_STATE` DTR/RTS bits in hardware and maps specific
|
|
198
|
+
transitions to an internal EN/BOOT reset, the software-only
|
|
199
|
+
equivalent of the same trick. That sequence lives in `cdc_reset.py`,
|
|
200
|
+
separate from `usb_device.py`'s bridge-chip logic since the two have
|
|
201
|
+
nothing in common at the wire level.
|
|
202
|
+
|
|
203
|
+
## Files
|
|
204
|
+
|
|
205
|
+
```
|
|
206
|
+
src/nrflash/
|
|
207
|
+
__init__.py package version
|
|
208
|
+
__main__.py enables `python3 -m nrflash.cli`
|
|
209
|
+
cli.py CLI: argv parsing, fd bootstrap, flash/verify/probe commands
|
|
210
|
+
rom_loader.py SLIP framing + ROM bootloader command/response protocol,
|
|
211
|
+
chip auto-detection, baud-change command
|
|
212
|
+
usb_device.py USB backend detection, fd wrapping, UART-bridge register
|
|
213
|
+
init/baud reprogramming, endpoint discovery
|
|
214
|
+
cdc_reset.py native-USB-CDC bootloader entry/exit (DTR/RTS bit tricks)
|
|
215
|
+
uart_reset.py UART-bridge bootloader entry/exit (DTR/RTS pulse pattern)
|
|
216
|
+
stub_flasher_data.py vendored ESP-IDF RAM stub binaries (Apache-2.0/MIT, Espressif)
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
`pip install nrflash` puts a `nrflash` console script on `PATH` — no
|
|
220
|
+
`chmod +x`, no flat-directory requirement. Log/state files live under
|
|
221
|
+
`~/.nrflash` (override with `NRFLASH_DATA_DIR`) rather than next to the
|
|
222
|
+
installed package, since site-packages isn't guaranteed writable.
|
|
223
|
+
|
|
224
|
+
## Troubleshooting
|
|
225
|
+
|
|
226
|
+
**`probe` reports no response from bootloader**
|
|
227
|
+
Some clone boards need the physical BOOT button held while plugging in,
|
|
228
|
+
or the CH340/CP2102/FTDI wired to EN+GPIO0 for auto-reset to work at
|
|
229
|
+
all. Try unplugging/replugging the OTG cable once before assuming it's a
|
|
230
|
+
protocol problem.
|
|
231
|
+
|
|
232
|
+
**Flashing is slow / progress bar looks stuck**
|
|
233
|
+
On UART-bridge boards, check the log for a `Baud rate raised to ... and
|
|
234
|
+
verified` line — if it's missing or stuck at 115200, your specific
|
|
235
|
+
board/cable couldn't hold anything higher and the tool already fell back
|
|
236
|
+
automatically. If the progress bar itself looks frozen and then jumps to
|
|
237
|
+
100% all at once, make sure you're on a build with the live-progress fix
|
|
238
|
+
(see "What's supported" above) rather than an older buffered-tail-thread
|
|
239
|
+
build.
|
|
240
|
+
|
|
241
|
+
**`Verify MISMATCH` after a successful-looking write**
|
|
242
|
+
Don't trust a partial flash. Re-run `write --verify` rather than
|
|
243
|
+
assuming the device is fine — a flaky OTG link or an unstable baud rate
|
|
244
|
+
can drop bytes mid-transfer in a way that still returns "success" status
|
|
245
|
+
on a given block.
|
|
246
|
+
|
|
247
|
+
## Legal
|
|
248
|
+
|
|
249
|
+
For use on hardware you own. Flashing arbitrary firmware to a device you
|
|
250
|
+
don't own or have written permission to modify can violate warranty
|
|
251
|
+
terms or, depending on the device and jurisdiction, the law.
|
nrflash-1.0.0/README.md
ADDED
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
# Termux-ESP-Flasher
|
|
2
|
+
|
|
3
|
+
A Termux-native `.bin` flasher for ESP32 boards — no root, no
|
|
4
|
+
`esptool.py` subprocess, no pyserial.
|
|
5
|
+
|
|
6
|
+
Covers **two** device families, auto-detected from the USB VID:PID:
|
|
7
|
+
|
|
8
|
+
- **Native USB CDC** — ESP32-S3 / C3 / S2 (`303A:1001` / `303A:0002`).
|
|
9
|
+
Talks directly to the chip's USB-Serial-JTAG peripheral; bootloader
|
|
10
|
+
entry/exit is driven by `cdc_reset.py`.
|
|
11
|
+
- **UART bridge** — classic ESP32 and ESP8266 devkits behind a
|
|
12
|
+
CP2102, CH340/CH340G, CH9102, or FTDI FT232 bridge chip. The bridge
|
|
13
|
+
is opened over raw USB (same fd-wrapping as the native path — Termux
|
|
14
|
+
never gives you a `/dev/ttyUSB*` node without root, so this isn't
|
|
15
|
+
optional) and its DTR/RTS lines are pulsed in the classic GPIO0+EN
|
|
16
|
+
pattern by `uart_reset.py`.
|
|
17
|
+
|
|
18
|
+
Both paths upload the real ESP-IDF RAM stub for faster block writes, and
|
|
19
|
+
both fall back automatically to the plain ROM bootloader if the stub
|
|
20
|
+
fails to load for any reason.
|
|
21
|
+
|
|
22
|
+
## Why this exists instead of just running esptool.py
|
|
23
|
+
|
|
24
|
+
`esptool.py` talks over pyserial, which expects a `/dev/ttyUSB*` or
|
|
25
|
+
`/dev/ttyACM*` node. On stock no-root Termux there often isn't one —
|
|
26
|
+
Android hands USB access to apps as a raw file descriptor via
|
|
27
|
+
`termux-usb`, not a serial device node. This tool talks straight to the
|
|
28
|
+
USB endpoints (and, for UART-bridge boards, straight to the bridge
|
|
29
|
+
chip's own vendor registers) instead of assuming a tty exists.
|
|
30
|
+
|
|
31
|
+
**If you're on a desktop/laptop Linux box with a real `/dev/ttyUSB*`
|
|
32
|
+
node, just use real `esptool.py` — it's more battle-tested.** This tool
|
|
33
|
+
exists for the no-root-Termux gap esptool's pyserial transport can't
|
|
34
|
+
reach.
|
|
35
|
+
|
|
36
|
+
## What's supported
|
|
37
|
+
|
|
38
|
+
- **Chip auto-detection.** `--chip` is optional on `probe`, `write`, and
|
|
39
|
+
`verify` — omit it and the tool syncs with the ROM bootloader, reads
|
|
40
|
+
the chip's magic-value register, and picks the right chip for you.
|
|
41
|
+
Pass `--chip` explicitly to override (still required for
|
|
42
|
+
`erase-info`, which never touches hardware).
|
|
43
|
+
- **Stub loader.** Both native-USB and UART-bridge sessions upload the
|
|
44
|
+
real ESP-IDF RAM stub after syncing, switching from 1 KiB ROM-only
|
|
45
|
+
blocks to 16 KiB stub blocks. Falls back to ROM-only if the stub
|
|
46
|
+
upload doesn't succeed for some reason — flashing still works, just
|
|
47
|
+
slower.
|
|
48
|
+
- **Automatic baud renegotiation on UART-bridge boards.** Once the stub
|
|
49
|
+
is running, the tool steps up through 921600 → 460800 → 230400 baud,
|
|
50
|
+
verifying each one actually holds (a cheap `sync()`) before trusting
|
|
51
|
+
it. If a candidate rate doesn't hold, it physically re-enters the ROM
|
|
52
|
+
bootloader and rebuilds the whole session at 115200 before trying the
|
|
53
|
+
next slower candidate — a bad guess costs a couple seconds, not the
|
|
54
|
+
whole flash. Settles on whatever your specific board/cable can
|
|
55
|
+
actually sustain, or stays at 115200 if nothing higher works. Native
|
|
56
|
+
USB CDC boards skip this entirely — there's no real UART clock
|
|
57
|
+
underneath USB CDC, so baud rate doesn't mean anything there.
|
|
58
|
+
- **Live progress.** The flash progress bar streams in real time on the
|
|
59
|
+
no-root Termux fd-bootstrap path — earlier builds buffered progress
|
|
60
|
+
updates invisibly until the transfer finished, then dumped the whole
|
|
61
|
+
bar at once, which looked like a stall.
|
|
62
|
+
- **Multi-file writes in one session.** `write` accepts one or more
|
|
63
|
+
`OFFSET:FILE` pairs and flashes all of them under a single USB
|
|
64
|
+
permission prompt / bootloader handshake.
|
|
65
|
+
|
|
66
|
+
## Scope / limitations (read before filing an issue)
|
|
67
|
+
|
|
68
|
+
- **No full-chip erase command.** `erase-info` explains why: an erase
|
|
69
|
+
that gets interrupted by a flaky OTG connection mid-operation has no
|
|
70
|
+
recovery path. Flash a full image (bootloader + partition table +
|
|
71
|
+
app) at the correct offsets instead of erasing first. `write --erase`
|
|
72
|
+
will erase exactly the bytes about to be overwritten via
|
|
73
|
+
`ERASE_REGION` if the ROM supports it, falling back silently to
|
|
74
|
+
`flash_begin`'s own per-block erase otherwise.
|
|
75
|
+
- **Auto-detection is a best-effort heuristic**, not a guarantee for
|
|
76
|
+
every silicon revision — it reads the chip magic value at a register
|
|
77
|
+
address that's held true across ESP32/S2/S3/C3 for years, but an
|
|
78
|
+
unrecognized value means "pass `--chip` explicitly," not a guess.
|
|
79
|
+
- **Stub data is vendored for more chips than are currently wired up**
|
|
80
|
+
(`esp32c2`, `c5`, `c6`, `c61`, `h2`, `h4`, `p4`, `s31` all have stub
|
|
81
|
+
binaries already sitting in `stub_flasher_data.py`), but
|
|
82
|
+
`CHIP_PARAMS`/`KNOWN_MAGIC`/`CHIP_CHOICES` only cover `esp32`,
|
|
83
|
+
`esp8266`, `esp32s2`, `esp32s3`, `esp32c3` today. Wiring up one of the
|
|
84
|
+
others means adding its real chip-magic value and SPI-attach params —
|
|
85
|
+
open an issue (or ask) with the specific chip if you need one.
|
|
86
|
+
|
|
87
|
+
## Install
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
pkg update && pkg install python termux-api libusb
|
|
91
|
+
pip install nrflash
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
`pip install nrflash` pulls in `pyusb` automatically. `termux-api` and
|
|
95
|
+
`libusb` are system packages `pip` can't install for you — they still need
|
|
96
|
+
`pkg install`, and the **Termux:API** app from
|
|
97
|
+
[F-Droid](https://f-droid.org) (not the Play Store) must be installed
|
|
98
|
+
separately for the no-root USB-permission flow to work at all.
|
|
99
|
+
|
|
100
|
+
<details>
|
|
101
|
+
<summary>Installing from source instead</summary>
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
git clone https://github.com/7wp81x/Termux-ESP-Flasher
|
|
105
|
+
cd Termux-ESP-Flasher
|
|
106
|
+
pip install .
|
|
107
|
+
```
|
|
108
|
+
</details>
|
|
109
|
+
|
|
110
|
+
## Usage
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
chmod +x nrflash
|
|
114
|
+
|
|
115
|
+
# --chip is optional everywhere except erase-info - omit it to auto-detect
|
|
116
|
+
./nrflash probe
|
|
117
|
+
./nrflash write --offset 0x0 firmware.bin
|
|
118
|
+
|
|
119
|
+
# Still works if you want to force a specific chip
|
|
120
|
+
./nrflash write --chip esp32c3 --offset 0x0 firmware.bin
|
|
121
|
+
|
|
122
|
+
# Flash + MD5-verify against the device afterward
|
|
123
|
+
./nrflash write --chip esp32s3 --offset 0x0 firmware.bin --verify
|
|
124
|
+
|
|
125
|
+
# Flash a sub-image at a partition offset (e.g. app partition only)
|
|
126
|
+
./nrflash write --offset 0x10000 app.bin
|
|
127
|
+
|
|
128
|
+
# Flash bootloader + partition table + app in one session
|
|
129
|
+
./nrflash write 0x0:bootloader.bin 0x8000:partitions.bin 0x10000:app.bin
|
|
130
|
+
|
|
131
|
+
# Stand-alone MD5 check against a file already on disk
|
|
132
|
+
./nrflash verify --chip esp32c3 --offset 0x0 firmware.bin
|
|
133
|
+
|
|
134
|
+
# Explicitly erase the write range first via ERASE_REGION
|
|
135
|
+
./nrflash write --offset 0x0 firmware.bin --erase
|
|
136
|
+
|
|
137
|
+
# Stay in the bootloader after flashing instead of rebooting
|
|
138
|
+
./nrflash write --offset 0x0 firmware.bin --no-reboot
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
First run on no-root Termux pops the same USB permission dialog every
|
|
142
|
+
time — tap **OK**. The permission persists until you unplug.
|
|
143
|
+
|
|
144
|
+
## What actually flashes — single binary vs. esptool's three images
|
|
145
|
+
|
|
146
|
+
Real `esptool.py write_flash` usually takes **three** files at three
|
|
147
|
+
offsets (bootloader, partition table, app), e.g.:
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
0x0 bootloader.bin
|
|
151
|
+
0x8000 partition-table.bin
|
|
152
|
+
0x10000 app.bin
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
`nrflash write` can take all three in one call (see the multi-file
|
|
156
|
+
example above), or one file per invocation if you prefer. If your build
|
|
157
|
+
only produces a single merged/combined `.bin` (PlatformIO can do this —
|
|
158
|
+
check for a `firmware.factory.bin` or similar after `pio run`), one call
|
|
159
|
+
at `0x0` is all you need.
|
|
160
|
+
|
|
161
|
+
## How bootloader entry works
|
|
162
|
+
|
|
163
|
+
- **UART-bridge boards** (CP2102/CH340/CH9102/FTDI) have real DTR/RTS
|
|
164
|
+
lines wired into EN/BOOT. `usb_device.py`'s `init_uart_bridge()`
|
|
165
|
+
configures the bridge's line coding and baud divisor via its own
|
|
166
|
+
vendor control transfers, then `uart_reset.py` pulses DTR/RTS in the
|
|
167
|
+
classic auto-reset pattern.
|
|
168
|
+
- **Native USB CDC boards** have no bridge chip — the chip's internal
|
|
169
|
+
USB-Serial-JTAG peripheral watches the CDC class's
|
|
170
|
+
`SET_CONTROL_LINE_STATE` DTR/RTS bits in hardware and maps specific
|
|
171
|
+
transitions to an internal EN/BOOT reset, the software-only
|
|
172
|
+
equivalent of the same trick. That sequence lives in `cdc_reset.py`,
|
|
173
|
+
separate from `usb_device.py`'s bridge-chip logic since the two have
|
|
174
|
+
nothing in common at the wire level.
|
|
175
|
+
|
|
176
|
+
## Files
|
|
177
|
+
|
|
178
|
+
```
|
|
179
|
+
src/nrflash/
|
|
180
|
+
__init__.py package version
|
|
181
|
+
__main__.py enables `python3 -m nrflash.cli`
|
|
182
|
+
cli.py CLI: argv parsing, fd bootstrap, flash/verify/probe commands
|
|
183
|
+
rom_loader.py SLIP framing + ROM bootloader command/response protocol,
|
|
184
|
+
chip auto-detection, baud-change command
|
|
185
|
+
usb_device.py USB backend detection, fd wrapping, UART-bridge register
|
|
186
|
+
init/baud reprogramming, endpoint discovery
|
|
187
|
+
cdc_reset.py native-USB-CDC bootloader entry/exit (DTR/RTS bit tricks)
|
|
188
|
+
uart_reset.py UART-bridge bootloader entry/exit (DTR/RTS pulse pattern)
|
|
189
|
+
stub_flasher_data.py vendored ESP-IDF RAM stub binaries (Apache-2.0/MIT, Espressif)
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
`pip install nrflash` puts a `nrflash` console script on `PATH` — no
|
|
193
|
+
`chmod +x`, no flat-directory requirement. Log/state files live under
|
|
194
|
+
`~/.nrflash` (override with `NRFLASH_DATA_DIR`) rather than next to the
|
|
195
|
+
installed package, since site-packages isn't guaranteed writable.
|
|
196
|
+
|
|
197
|
+
## Troubleshooting
|
|
198
|
+
|
|
199
|
+
**`probe` reports no response from bootloader**
|
|
200
|
+
Some clone boards need the physical BOOT button held while plugging in,
|
|
201
|
+
or the CH340/CP2102/FTDI wired to EN+GPIO0 for auto-reset to work at
|
|
202
|
+
all. Try unplugging/replugging the OTG cable once before assuming it's a
|
|
203
|
+
protocol problem.
|
|
204
|
+
|
|
205
|
+
**Flashing is slow / progress bar looks stuck**
|
|
206
|
+
On UART-bridge boards, check the log for a `Baud rate raised to ... and
|
|
207
|
+
verified` line — if it's missing or stuck at 115200, your specific
|
|
208
|
+
board/cable couldn't hold anything higher and the tool already fell back
|
|
209
|
+
automatically. If the progress bar itself looks frozen and then jumps to
|
|
210
|
+
100% all at once, make sure you're on a build with the live-progress fix
|
|
211
|
+
(see "What's supported" above) rather than an older buffered-tail-thread
|
|
212
|
+
build.
|
|
213
|
+
|
|
214
|
+
**`Verify MISMATCH` after a successful-looking write**
|
|
215
|
+
Don't trust a partial flash. Re-run `write --verify` rather than
|
|
216
|
+
assuming the device is fine — a flaky OTG link or an unstable baud rate
|
|
217
|
+
can drop bytes mid-transfer in a way that still returns "success" status
|
|
218
|
+
on a given block.
|
|
219
|
+
|
|
220
|
+
## Legal
|
|
221
|
+
|
|
222
|
+
For use on hardware you own. Flashing arbitrary firmware to a device you
|
|
223
|
+
don't own or have written permission to modify can violate warranty
|
|
224
|
+
terms or, depending on the device and jurisdiction, the law.
|