资源简介

嵌入式上位机操作,在matlab GUI界面下对硬件进行读写IO操作操作,利用plot对数据进行波形显示

资源截图

代码片段和文件信息

function varargout = AcqMrM(varargin)
% ACQMRM M-file for AcqMrM.fig
%      ACQMRM by itself creates a new ACQMRM or raises the existing
%      singleton*.
%
%      H = ACQMRM returns the handle to a new ACQMRM or the handle to
%      the existing singleton*.
%
%      ACQMRM(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in ACQMRM.M with the given input arguments.
%
%      ACQMRM(‘Property‘‘Value‘...) creates a new ACQMRM or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before AcqMrM_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to AcqMrM_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE‘s Tools menu.  Choose “GUI allows only one
%      instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES

% Copyright 2002-2003 The MathWorks Inc.

% Edit the above text to modify the response to help AcqMrM

% Last Modified by GUIDE v2.5 24-Oct-2012 10:06:06

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @AcqMrM_OpeningFcn ...
                   ‘gui_OutputFcn‘  @AcqMrM_OutputFcn ...
                   ‘gui_LayoutFcn‘  []  ...
                   ‘gui_Callback‘   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
    gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before AcqMrM is made visible.
function AcqMrM_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to AcqMrM (see VARARGIN)

% Choose default command line output for AcqMrM
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes AcqMrM wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = AcqMrM_OutputFcn(hobject eventdata handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% --- Executes on button press in Soft.
function Soft_Callback(hobject eventdata handles)
% hobject    handle to Soft

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-11-05 09:46  AcqMrMatlab\
     文件        5691  2012-10-24 10:27  AcqMrMatlab\AcqMrM.fig
     文件       30063  2012-10-24 12:55  AcqMrMatlab\AcqMrM.m
     文件         400  2012-10-19 09:11  AcqMrMatlab\Getusbversion.m
     文件       15802  2012-10-18 10:10  AcqMrMatlab\GetUsbVersion.mdl
     文件        7560  2012-10-24 10:32  AcqMrMatlab\IO.fig
     文件       42889  2012-10-24 12:20  AcqMrMatlab\IO.m
     文件         365  2012-10-19 09:12  AcqMrMatlab\Readdi.m
     文件       18454  2012-10-17 17:12  AcqMrMatlab\ReadDi.mdl
     文件         478  2012-10-24 14:44  AcqMrMatlab\Readdiall.m
     文件       41094  2012-10-19 21:59  AcqMrMatlab\ReadDiAll.mdl
     文件         374  2012-10-19 09:13  AcqMrMatlab\Readtimer.m
     文件       18457  2012-10-18 09:26  AcqMrMatlab\ReadTimer.mdl
     文件        2728  2012-10-19 22:05  AcqMrMatlab\USB.h
     文件     1347680  2012-10-22 21:58  AcqMrMatlab\UsbComm.dll
     文件         405  2012-10-19 09:13  AcqMrMatlab\Writedo.m
     文件       20237  2012-10-18 12:47  AcqMrMatlab\WriteDo.mdl
     文件         863  2012-10-24 15:22  AcqMrMatlab\Writedoall.asv
     文件         760  2012-10-24 15:32  AcqMrMatlab\Writedoall.m
     文件       36603  2012-10-24 15:33  AcqMrMatlab\WriteDoAll.mdl
     文件         365  2012-10-19 09:13  AcqMrMatlab\Writepwm.m
     文件       20077  2012-10-18 09:45  AcqMrMatlab\WritePwm.mdl

评论

共有 条评论