Skip to content

Commit

Permalink
Fix default timeout value for MATLAB client.
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-watkins committed Jul 8, 2015
1 parent 601bae9 commit e7e4b62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MATLAB/+XPlaneConnect/openUDP.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
addOptional(p,'xpHost','127.0.0.1',@ischar);
addOptional(p,'xpPort',49009,@isnumeric);
addOptional(p,'port',0,@isnumeric);
addOptional(p,'timeout',0,@isnumeric);
addOptional(p,'timeout',100,@isnumeric);
parse(p,varargin{:});

%% Create client
Expand Down

0 comments on commit e7e4b62

Please sign in to comment.