https://github.com/redchenjs/bluetooth_flash_programmer_qt
Bluetooth Flash Programmer | 藍牙Flash編程器 | 藍牙Flash編程器配套工具
https://github.com/redchenjs/bluetooth_flash_programmer_qt
bluetooth flash programmer qt spp
Last synced: about 1 month ago
JSON representation
Bluetooth Flash Programmer | 藍牙Flash編程器 | 藍牙Flash編程器配套工具
- Host: GitHub
- URL: https://github.com/redchenjs/bluetooth_flash_programmer_qt
- Owner: redchenjs
- Created: 2020-02-10T13:24:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-08T04:39:17.000Z (over 5 years ago)
- Last Synced: 2026-01-01T17:58:45.977Z (5 months ago)
- Topics: bluetooth, flash, programmer, qt, spp
- Language: C++
- Homepage:
- Size: 43.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Bluetooth Flash Programmer
==========================
Bluetooth Flash Programmer using Bluetooth SPP profile.
## Dependencies
```
cmake
qt5-base
qt5-connectivity
```
## Build
```
mkdir -p build
cd build
cmake ../
make
```
## Usage
### Erase full flash chip
```
btflash BD_ADDR erase_all
```
### Erase flash
```
btflash BD_ADDR erase 0x0000(addr) 0x1000(length)
```
### Write flash
```
btflash BD_ADDR write 0x0000(addr) 0x1000(length) data.bin
```
### Read flash
```
btflash BD_ADDR read 0x0000(addr) 0x1000(length) data.bin
```
### Get flash info
```
btflash BD_ADDR info
```