Compare commits

...

2 Commits

Author SHA1 Message Date
e4c4a7f14a The program no longer swears at you 2025-09-19 18:09:28 +02:00
d7b70b7629 Fixed wording 2025-09-19 18:09:14 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ cargo install --git https://git.zumepro.cz/michal.prochazka/tulflash
## Flashing Intel HEX binaries
```bash
# All OSes, automatically detects all ports
# All OSes, automatically detects the correct serial port
tulflash write <path-to-hex>
```

View File

@@ -31,7 +31,7 @@ impl PhysicalTarget {
let name = new.read_info(0x00, 0x02).unwrap();
let rev = new.read_info(0x00, 0x03).unwrap();
println!("Detected chip ID: {manufacturer:02X} {family:02X} {name:02X} {rev:02X} (whatever the fuck that means)");
println!("Detected chip ID: {manufacturer:02X} {family:02X} {name:02X} {rev:02X} (whatever that means)");
Ok(new)
}