Notes

Friday

  • Matlab2024 launches Widefield GUI but NI USB-6001 not detected:
>> WidefieldImager
Unable to detect 'ni' hardware:
National Instruments NI-DAQmx driver is either not installed or the installed version is not supported.
Use the Windows Control Panel to uninstall any existing NI-DAQmx driver listed under 'National Instruments Software'.
Then, open the Add-On Explorer to install the Data Acquisition Toolbox Support Package for 
National Instruments NI-DAQmx Devices.
 
No NI devices found or data acquisition toolbox missing.
Use software triggers instead.
PCO camera not available. Searching for other cameras.
Using tucamimaq2016a64 as current video adapter
  • Upgrading NI-DAQmx Firmware
  • After restart error: Bug
>> WidefieldImager
Error using tabular/length (line 286)
Undefined function 'LENGTH' for input arguments of type 'table'. Use the height, width, or size functions instead.
 
Error in WidefieldImager>RecordMode_Callback (line 1319)
    for x = 1 : length(daqs)
 
Error in WidefieldImager>WidefieldImager_OpeningFcn (line 69)
handles = RecordMode_Callback(handles.RecordMode, [], handles); %check recording mode to create correct ni object
 
Error in gui_mainfcn (line 220)
    feval(gui_State.gui_OpeningFcn, gui_hFigure, [], guidata(gui_hFigure), varargin{:});
 
Error in WidefieldImager (line 43)
    gui_mainfcn(gui_State, varargin{:});
  • Solved from line 1303
%daqs = daqlist;
daqs = daq.getDevices;
 
---