Added support for the TEXT command to the MATLAB client

This commit is contained in:
Jason Watkins
2015-04-07 15:30:59 -07:00
parent a903859a3c
commit 8445c60e00
3 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
function sendTEXTTest()
%% Setup
addpath('../../MATLAB')
import XPlaneConnect.*
%% Test
sendTEXT('sendTEXT test message M', 200, 400)
end

View File

@@ -12,6 +12,7 @@ disp(['XPC Tests-MATLAB (', os, ')']);
theTests = {{@openCloseTest, 'Open/Close Test', 0},...
{@sendReadTest,'Send/Read Test', 0},...
{@sendTEXTTest,'Send text Test', 0},...
{@requestDREFTest,'Request DREF Test', 0},...
{@sendDREFTest,'Send DREF Test', 0},...
{@DATATest,'DATA Test', 0},...