Skip to content

Commit b784306

Browse files
committed
draft README with some hardware information
1 parent 3b46a9c commit b784306

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Qualcoom mask ROM tool
2+
3+
This tool lets you interact with Qualcomm SoCs in
4+
[EDL mode](https://en.wikipedia.org/wiki/Qualcomm_EDL_mode).
5+
6+
**NOTE**: The `qcserial` must not be loaded; TL;DR: `sudo modprobe -r qcserial`
7+
8+
## Hardware Information
9+
10+
```
11+
cargo run --release -- info
12+
```
13+
14+
### TP-Link M7350 v3
15+
16+
| feature | value |
17+
| ------------- | -------------------- |
18+
| serial number | `78 9e e2 1b` |
19+
| hardware ID | `007F10E1` (MDM9225) |
20+
21+
https://clickgsm.ro/software-factory/qualcomm-snapdragon-x5-modem-mdm9225-1--6om/
22+
23+
### TP-Link M7350 v4
24+
25+
| feature | value |
26+
| ------------- | -------------------- |
27+
| serial number | `a8 ed 62 6b` |
28+
| hardware ID | `000480E1` (MDM9207) |
29+
30+
https://clickgsm.ro/software-rootare/qualcomm-snapdragon-x5-modem-mdm9207-c-000480e1-69u/

src/main.rs

-5
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,6 @@ fn info(i: &Interface, e_in_addr: u8, e_out_addr: u8) {
245245
let mut id = b.to_vec();
246246
id.reverse();
247247
println!("Serial number: {id:02x?}");
248-
249-
// S/N: [78 9e e2 1b]
250-
//
251-
// MSM HW ID 007F10E1: MDM9225
252-
// https://clickgsm.ro/software-factory/qualcomm-snapdragon-x5-modem-mdm9225-1--6om/
253248
}
254249

255250
#[derive(Debug, Subcommand)]

0 commit comments

Comments
 (0)