معرفی شرکت ها


bakelite-0.3.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A utility that makes it simple to communicate with your firmware.
ویژگی مقدار
سیستم عامل -
نام فایل bakelite-0.3.0
نام bakelite
نسخه کتابخانه 0.3.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Brendan Powers
ایمیل نویسنده brendan0powers@gmail.com
آدرس صفحه اصلی https://pypi.org/project/bakelite
آدرس اینترنتی https://pypi.org/project/bakelite/
مجوز MIT
# 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) <hr/> 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) * Python A 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 = CRC8 messageIds { 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).


نیازمندی

مقدار نام
>=0.12.0,<0.13.0 lark
>=3,<4 jinja2
>=0.5.2,<0.6.0 dataclasses-json
>=3.1.7,<4.0.0 bitstring
>=8.0.3,<9.0.0 click


زبان مورد نیاز

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl bakelite-0.3.0:

    pip install bakelite-0.3.0.whl


نصب پکیج tar.gz bakelite-0.3.0:

    pip install bakelite-0.3.0.tar.gz