Skip to main content

MultiWii Serial Protocol (MSP) API for python3

Project description

MultiWii Serial Protocol (MSP)

Handles the MultiWii Serial Protocol to send/receive data from boards.

This is text-based / console, no GUI. It works by reading data from the multicopter and/or sending commands from a computer via a serial modem. I use this module for doing different request to my multicopters in order to control them wirelessly via a Raspberry Pi.

Caution

This code is still somewhat under development, if you found a bug or a improvement, please let me know!!

Installation

To install with pip run the following command from this directory,

pip install msp-python3

How?

Just create a MultiWii object that receives the serial port address as parameter and then you can ask for a MSP command by using the function getData, an explicit example looks like this:

from msp.multiwii import MultiWii

serialPort = "/dev/ttyS0"
board = MultiWii(serialPort)

MultiWii Serial Protocol

MSP is a protocol designed by the MultiWii community, with the idea to be light, generic, bit wire efficient, secure. The MSP data frames are structured as:

$<header>,<direction>,<size>,<command>,<crc>$

where:

  • preamble: the ASCII characters $M
  • direction: the ASCII character < if the message goes to the MultiWii board or > if the message is coming from the board
  • size: number of data bytes, binary. Can be zero as in the case of a data request to the board
  • command: message id of MSP
  • data: values to be sent. UINT16 values are LSB first
  • crc: (cyclic redundancy check) checksum, XOR of <size>,<command> and each data byte into a zero sum

For a complete list of Protocols and responses that this project is based off of please visit MultiWii Serial Protocol - Web Archive.

Stack overflow example of MSP

Data Flow

There is basically three types of messages to interact with a MultiWii board. Those are command, request and response. Command is an incoming message without implicit outgoing response from the board, request is an incoming message with implicit outgoing response while response is the outgoing message resulting from an incoming request.

If, e.g., the orientation of the board is needed, then a message with type request and ID = 108 must be created and then sent to the board, after being sent, the board will reply with a response.

Performance

The entire implementation of this module does not include a sleep function, which means that is very fast and efficient, the rate of communication would then depend on the computer and the board capabilities.

The module is also designed to be extremely simple to use, the next code will request and print (to the host computer) the orientation of the a MultiWii board connected to a USB port:

import sys
from msp.multiwii import MultiWii

if __name__ == "__main__":
    try:
        print_debug = sys.argv[1].lower() == 'true'
        fc = MultiWii("/dev/ttyS0", print_debug)
        fc.start()
        while True:
            print(fc.get_attitude())

    except Exception as error:
        import traceback
        print("Error on Main: " + str(error))
        traceback.print_exc()

Boards update

8bit boards

When using an 8bit MultiWii board, please change the wakeup time. The old boards need more than 10 seconds to boot up in order to be ready to start asking for data. A safe time would be:

"""Time to wait until the board becomes operational"""
wakeup = 14

32bit boards

If you're using something similar to a naze32 using either baseflight or cleanflight you will be able to ask for attitude and some other commands, but by default you will not be able to use the MSP_SET_RAW_RC to write pilot commands to the multiwii. In order to do that you need to activate (via the baseflight/cleanflight GUI) the SerialRX with the specific type for MSP (MultiWii Serial Protocol). The instructions for doing that on baseflight are:

  • Open the CLI (while on the baseflight configurator) and type:
feature SERIALRX

and then type the following lines:

set serialrx_type=4

This will activate "msp" in order to control the multiwii via that protocol. Important: when type=4 is active, standard radio will not work... (at least on the releases I'm using).

Then you can carefully test my example "test-arm-disarm.py"... You will see the motors spin for 3 seconds. ¡¡BE CAREFUL!!

Additional Links

Cleanflight Checklist is very helpful for ensuring that your drone has been configured correctly.

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

msp-python3-0.2.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

msp_python3-0.2.0-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file msp-python3-0.2.0.tar.gz.

File metadata

  • Download URL: msp-python3-0.2.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.3

File hashes

Hashes for msp-python3-0.2.0.tar.gz
Algorithm Hash digest
SHA256 af80b9275dca4b1aef28735645ca9a2083bd9949795106ab3a6922b37dd6121e
MD5 35cef7cde0120c60e582348b256e4161
BLAKE2b-256 7f0e0efbf7b64ddba633ef81da1e511fcc13c4a5827925260422faf95f49fd5b

See more details on using hashes here.

File details

Details for the file msp_python3-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: msp_python3-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.3

File hashes

Hashes for msp_python3-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 df5e2a8904a4da952b1f5cf7217ba9185e8d3636fb0c877f5dc88c7df09cd538
MD5 ba5a3f034bd43760664d7351769f19e5
BLAKE2b-256 d266e88cc6a3f724167fe3f66a55c4f8a316f63510a4379ff9ad84a82dbde2ff

See more details on using hashes here.

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