Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brendan0powers/bakelite
Bakelite is a utility that makes it simple to communicate with your firmware.
https://github.com/brendan0powers/bakelite
cpp embedded-systems firmware format protocol python serialization
Last synced: about 3 hours ago
JSON representation
Bakelite is a utility that makes it simple to communicate with your firmware.
- Host: GitHub
- URL: https://github.com/brendan0powers/bakelite
- Owner: brendan0powers
- License: mit
- Created: 2020-09-09T16:21:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-12T02:13:56.000Z (8 months ago)
- Last Synced: 2025-01-01T15:18:13.434Z (about 1 month ago)
- Topics: cpp, embedded-systems, firmware, format, protocol, python, serialization
- Language: C++
- Homepage: https://bakelite.readthedocs.io/en/latest/
- Size: 370 KB
- Stars: 19
- Watchers: 4
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Bakelite
[![Tests](https://github.com/brendan0powers/bakelite/actions/workflows/test.yaml/badge.svg)](https://github.com/brendan0powers/bakelite/actions/workflows/test.yaml)
[![Lint](https://github.com/brendan0powers/bakelite/actions/workflows/lint.yaml/badge.svg)](https://github.com/brendan0powers/bakelite/actions/workflows/lint.yaml)
[![Documentation Status](https://readthedocs.org/projects/bakelite/badge/?version=latest)](https://bakelite.readthedocs.io/en/latest/?badge=latest)[Documentation](https://bakelite.readthedocs.io/en/latest/) |
[Protocol Spec](https://bakelite.readthedocs.io/en/latest/protocol/) |
[Arduino Example](https://github.com/brendan0powers/bakelite/tree/master/examples/arduino)
Bakelite is a utility that makes it simple to communicate with your firmware.
Bakelite uses a code generator to automate the tedious process of hand-building your own protocol.
It includes features like framing, error detection, and a lightweight C++ implementation suitable for small microcontrollers.## Features
* Compact, easy to understand data serialization format
* Simple message passing
* Built in framing and error detection
* Easy to integrate with Serial, USB, TCP, I2C, etc...
* Use only the parts you need
* Code generators for:
* C++ (header only, no STL or memory allocation)
* PythonA more formal overview of the protocol can be found
[here](./docs/protocol.md), and examples can be found [here](./examples).## Status
This project is in early development. The C++ implementation is currently WIP.
The API and data format are not stable, and will change without notice.## How Does it Work?
![Overview](docs/img/overview.svg)
You start by creating a protocol definition file that describes the messages and fields you'd like to send. It also includes information about the protocol itself, like what kind of framing to use and the maximum message length.Here's an example:
```proto
struct TestMessage {
message: string[128]
}struct Ack {
code: uint8
}protocol {
maxLength = 256
framing = COBS
crc = CRC8messageIds {
TestMessage = 1
Ack = 2
}
}
```Now that you've created the definition file, we can generate some code:
```bash
bakelite gen -l python -i my_proto.bakelite -o my_proto.py
```And then use it to send a message over a serial port:
```python3
from proto import Protocol, TestMessage, Ack
import serial# Open a serial port and send an Ack message
with serial.Serial(':COM1', 9600) as port:
proto = Protocol(stream=port)
proto.send(Ack(code=123))
```Message serialization, framing, and error detection are all taken care of.
If you need something more customized, you can use any of the components independently.
Drop-in your own CRC algorithm, use the framer with your own message format, or just use the serializer on its own.For a more complete example, have a look at the [Python/Arduino Example](./examples/arduino).