Skip to main content

Fitterbap python bindings

Project description

Welcome!

Welcome to Fitterbap, the Firmware toolkit to enable reliable best architecture practices! Fitterbap provides common utilities useful for embedded systems that are often not included in an RTOS or the standard C library. Fitterbap includes:

  • A distributed publish-subscribe implementation for easy command, control, and configuration of your designs.
  • A high-reliability data link protocol, suitable for UARTs.
  • Common C macros, including assert and design-by-contract.
  • Host software and UI to accelerate firmware development.
  • And more!

This library is intended for use by software developers producing firmware for embedded devices based upon microcontrollers. Many features of the library use malloc, but it avoids using free. The Fitterbap library is available under the permissive Apache 2.0 license.

As of May 2021, the Fitterbap library API is not yet stable and subject to change without notice.

Known limitations

  • Comm
    • Data link reconnection needs more work.
    • Port 0 time sync not yet implemented.
    • Window size is currently hard-coded. Needs negotiation protocol.
    • Timestamped UTF-8 source/sink not yet implemented.
    • No native USB reference implementation yet, but can use USB-CDC.
  • PubSub
    • Hard-coded maximum topic lengths.
    • Topic query (my/topic?) not yet implemented.
    • No validation using provided topic metadata.
  • Host
    • Win 10x64 only, no macOS or Linux yet.
    • fbp_fatal not properly implemented for pyfitterbap.

Installation

The Fitterbap library uses CMake to generate the project make files for the C components.

Since Fitterbap is a library primarily targeted at embedded microcontrollers, you will likely want to include compile it into your project. Projects using CMake can use ExternalProject_Add. Other build systems will likely need to include the source files directly. Consider using git subtrees or git submodules.

You will need to manually create the fitterbap/config.h file and implement the platform abstraction layer. See fitterbap/platform.h for details.

Host python

Install 64-bit python 3.8 or newer on your system. Confirm that it is correctly installed:

python3 -VV

On Windows, python 3 is usually installed as python rather than python3.

Then install the pyfitterbap package from pypi:

pip install -U pyfitterbap

You can then run the pyfitterbap communication UI tools using either:

python3 -m pyfitterbap comm_ui

Or

fitterbap comm_ui

Ubuntu

First install the build tools for your system.

sudo apt-get install build-essential cmake doxygen graphviz git

Then compile the Fitterbap library:

cd PROJECT_DIRECTORY
mkdir build && cd $_
cmake ..
cmake --build .
ctest .

You can also build and test the python library:

python3 setup.py build_ext --inplace
python3 -m unittest

To run the host comm UI:

python3 -m pyfitterbap comm_ui

Licenses

The Fitterbap library is available under the permissive Apache 2.0 license. This library includes all third-party dependencies in the third-party directory. The dependencies are built along with this project.
These third-party libraries are provided under their own licenses.

More information

The Fitterbap API is documented using doxygen.

For a history of changes, see the changelog.

Alternatives

Fitterbap is a broad library that implements several distinct features. Here are some other libraries that you can consider.

Full system:

Communication protocols:

PubSub:

Command & control:

Random number generation:

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyfitterbap-0.3.1.tar.gz (236.8 kB view hashes)

Uploaded Source

Built Distributions

pyfitterbap-0.3.1-cp39-cp39-win_amd64.whl (177.0 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

pyfitterbap-0.3.1-cp38-cp38-win_amd64.whl (176.7 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page