Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.
/ MSP Public archive

Arduino MSP (MultiWii Serial Protocol) library

License

Notifications You must be signed in to change notification settings

fdivitto/MSP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino library for MSP (MultiWii Serial Protocol)

This is a simple library to send requests, commands or just wait messages from a MultiWii compatible flight controller (cleanflight, betaflight, etc...), specifically designed to work better with INAV.

MSP library can be attached to any serial port (hardware or software).

Not all MSP messages and commands are implemented. However new messages can be simply added.

Example to get RC channels:

MSP msp;

void setup()
{
  Serial.begin(115200);
  msp.begin(Serial);
}

void loop()
{
  msp_rc_t rc;
  if (msp.request(MSP_RC, &rc, sizeof(rc))) {
  	
    uint16_t roll     = rc.channelValue[0];
    uint16_t pitch    = rc.channelValue[1];
    uint16_t yaw      = rc.channelValue[2];
    uint16_t throttle = rc.channelValue[3];
    
  }
}

About

Arduino MSP (MultiWii Serial Protocol) library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages