Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fightling/flash-renesas
Command line flasher for Renesas M16C
https://github.com/fightling/flash-renesas
Last synced: 2 months ago
JSON representation
Command line flasher for Renesas M16C
- Host: GitHub
- URL: https://github.com/fightling/flash-renesas
- Owner: fightling
- Created: 2014-07-24T15:08:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T09:24:10.000Z (over 5 years ago)
- Last Synced: 2024-10-10T19:11:14.915Z (3 months ago)
- Language: C++
- Homepage:
- Size: 21.5 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
flash-renesas
===============Programmer for M16C micro controller.
Prerequisites
-------------You must have installed the QT 5.3 runtime (see http://qt-project.org/downloads).
Installation
------------```
git clone https://github.com/patgithub/flash-renesas
cd flash-renesas
qmake flash-renesas.pro
make
```
You'll find the binary in ```./unix/release/flash-renesas/bin/```.Usage
-----Use Option -h to get help.
```
flash-renesas -h
```To load an display a MOT file just start:
```
flash-renesas image.mot
```To program a micro processor via serial port use:
```
flash-renesas image.mot /dev/ttyUSB0
```The program will try to unlock with the following IDs if needed: ```00:00:00:00:00:00:00``` and ```FF:FF:FF:FF:FF:FF:FF```.
Replace the ```/dev/ttyUSB0``` by your devce path or ```COM1```, ```COM2```. Append a explicit ID to unlock the processor:```
flash-renesas image.mot /dev/ttyUSB0 1:12:23:34:45:56:67
```