Metadata-Version: 2.1
Name: binmergetool
Version: 0.1.1
Summary: Tool for merging binary files together
Home-page: https://github.com/antoinejeanson/binmergetool
License: MIT
Author: Antoine Jeanson
Author-email: anonymous@mail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Project-URL: Repository, https://github.com/antoinejeanson/binmergetool
Description-Content-Type: text/markdown

# binmergetool
Simple tool for merging two binary files together.

# Install

    pip install binmergetool

# Usage

## Example: merging Arduino bootloader with application code

In this example, we'll add the Arduino bootloader to a compiled binary file for one-step flashing of microcontrollers.
Application code starts at 0x2000 so we set this as the offset.

    python -m binmergetool bootloader.bin application.bin 0x2000 0xFF application_with_bootloader.bin


