Skip to main content

Compost RPC protocol generator

Project description

Compost

Compost is a Remote Procedure Call (RPC) protocol generator with a simple wire format.

It abstracts communication between a PC and an MCU. Basically it allows you to call functions on your MCU from a PC.

Compost is meant to be used over any medium, but it's simplicity is best suited for UART/RS232 or UDP/IP.

Install

pip install compost_rpc

Documentation

Documentation is available in the Wiki

Introduction

With Compost you can write a function for your MCU in C, but call it from Python or C# on a PC.

The call on the PC looks like a normal function call, but Compost takes the arguments, creates a message and sends it over a transport like serial port. Then, Compost on the MCU parses the message and calls your function with the arguments you provided on the PC. Your function returns a value. Compost on the MCU creates a response message with the return value. The response is sent to PC. Compost on the PC parses the message and the function you called on the PC returns the value you provided in the MCU.

Simplified functionality diagram:

Functional overview

Features

Languge support

  • C
    • C11 standard
    • Implemented roles
      • RPC server (callee)
      • Notification sender
      • Notification receiver
  • Python
    • Needs version >= 3.10
    • Implemented roles
      • RPC client (caller)
      • Notification receiver
  • C#
    • Implemented roles
      • RPC client (caller)
      • Notification receiver

Transports

  • UDP transport
  • Serial transport
  • Raw ethernet transport (Linux only)
  • TCP transport
  • Stdio transport
  • CAN FD using SocketCAN (Linux only)
  • Custom

Data types

  • 8, 16, 32 and 64-bit signed and unsigned integers
  • 32 and 64-bit floating-point numbers (IEEE 754)
  • Bit-precise integers
  • C like Struct
  • C like Enum with selectable underlying type
  • Dynamically sized array (list) for each supported primitive type

Try it!

You just need Python and a C compiler like GCC to run our single PC example.

Clone the repository and enter the directory with the example:

git clone https://github.com/STMicroelectronics/compost-rpc.git
cd compost-rpc/examples/pc_to_pc

Generate C code from the protocol definition:

python protocol_def.py

Compile the server:

On Linux or macOS:

gcc -o server main.c compost.c

On Windows:

gcc -o server main.c compost.c -lws2_32

In one terminal run the C server:

./server

In another terminal run the Python client:

python main.py

Client sends two integers and the server adds them together and sends the result back to the client. It's probably the simplest Compost example you can have.

If you want to try Compost-RPC properly with an MCU, check out the Tutorial.

Project details


Download files

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

Source Distribution

compost_rpc-0.7.0.tar.gz (27.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

compost_rpc-0.7.0-py3-none-any.whl (29.4 kB view details)

Uploaded Python 3

File details

Details for the file compost_rpc-0.7.0.tar.gz.

File metadata

  • Download URL: compost_rpc-0.7.0.tar.gz
  • Upload date:
  • Size: 27.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.19

File hashes

Hashes for compost_rpc-0.7.0.tar.gz
Algorithm Hash digest
SHA256 76c2e5df3c2436ac3e609572981b1a892f5aecd31222555a48f5cafa7030594a
MD5 500b6e57397efdc468aa0d2b02b357ac
BLAKE2b-256 2a6800dcdbb6db39522cbd9c80f350581058a5b5fa4c80842192192831205bd5

See more details on using hashes here.

File details

Details for the file compost_rpc-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for compost_rpc-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0089308f878a5d8ddc923ae8adc1c9236b1807dad3461dda044b3d6325926fd7
MD5 ed7480f31e05c8374eb75df2e8e75416
BLAKE2b-256 2bfdd5bc957657fecd3ada2e548bbc5b48a49c3f99cb1cde1f067cba8df01aba

See more details on using hashes here.

Supported by

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