https://github.com/conorpp/mboot-js
Access NXP bootloaders using Nodejs or Chrome WebUSB (in progress)
https://github.com/conorpp/mboot-js
Last synced: about 1 month ago
JSON representation
Access NXP bootloaders using Nodejs or Chrome WebUSB (in progress)
- Host: GitHub
- URL: https://github.com/conorpp/mboot-js
- Owner: conorpp
- Created: 2020-04-25T18:53:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T17:41:48.000Z (over 3 years ago)
- Last Synced: 2025-10-01T02:33:08.479Z (10 months ago)
- Language: TypeScript
- Size: 1.11 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mboot-js
Access NXP bootloaders using Nodejs.
# Installing
```
npm i
```
# Running
Some examples.
List memories.
```
npm run dev -- list
```
Write binary firmware to flash.
```
npm run dev -- write 0
```
Read it back.
```
npm run dev -- read 0 22532 # Assuming firmware.bin is 22532 bytes long
```
Reset/reboot.
```
npm run dev -- reset
```
# Acknowledgements / other projects
Thank you to [pyMBoot](https://github.com/molejar/pyMBoot) (by @molejar), which is a more capable tool based on Python.