Exemple #1
0
 public static byte[] mspServoConf()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_SERVO_CONF, data, 59);
     return(result);
 }
Exemple #2
0
 public static byte[] mspWP()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_WP, data, 21);
     return(result);
 }
Exemple #3
0
 public static byte[] mspBoxIds()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_BOXIDS, data, 25);
     return(result);
 }
Exemple #4
0
 public static byte[] mspMotorPins()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_MOTOR_PINS, data, 11);
     return(result);
 }
Exemple #5
0
 public static byte[] mspPidNames()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_PIDNAMES, data, 25);
     return(result);
 }
Exemple #6
0
 public static byte[] mspAnalog()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_ANALOG, data, 10);
     return(result);
 }
Exemple #7
0
 public static byte[] mspRCTuning()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_RC_TUNING, data, 10);
     return(result);
 }
Exemple #8
0
 public static byte[] mspAltitude()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_ALTITUDE, data, 9);
     return(result);
 }
Exemple #9
0
 public static byte[] mspCompGPS()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_COMP_GPS, data, 8);
     return(result);
 }
Exemple #10
0
 public static byte[] mspRawGPS()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_RAW_GPS, data, 19);
     return(result);
 }
Exemple #11
0
 public static byte[] mspStatus()
 {
     byte[] result = null;
     int[]  data   = { };
     result = CoreFunctions.sendCommandAndReceive(0, MSP_STATUS, data, 14);
     return(result);
 }
Exemple #12
0
        /***** GET FUNCTIONS *****/

        public static byte[] mspIdent()
        {
            byte[] result = null;
            int[]  data   = { };
            result = CoreFunctions.sendCommandAndReceive(0, MSP_IDENT, data, 10);
            return(result);
        }