Error reported by S-function 'sldrtai' in 'Laser_exp​eriment_wi​th_2_laser​/Analog Input': Device not found.

12 views (last 30 days)
any help when reciving error report by s-function 'sldrtai' in laser experiment. it keeps saying device not found. i am connecting humusoft mf624 card. all seems good but don't know why no laser scope run.

Answers (1)

Jaynik
Jaynik on 4 Oct 2023
Hi Alaaeldin,
I understand that you are getting an error "sldrtai" saying device not found while using a "S-function" block. A common cause of this is segmentation violation due to an incorrect input port direct feedthrough setting. Another cause can be incorrect memory accesses which occur when your code accesses beyond the end of an array. For example, if you access input port 5 and have specified only 4 input ports.
To debug your C-MEX S-function, you can enable diagnostics by compiling the S-function source with the -g flag, e.g.,
mex -g sfunction_name.c
Hope this helps!
  1 Comment
Alaaeldin Eltayeb
Alaaeldin Eltayeb on 6 Oct 2023
thank you so much, Jaynik, i was able to solve the issue without debguging as oppose i did restart the PC and regenreate the code. however, i will debug it as you instructed. thanks again.

Sign in to comment.

Categories

Find more on Block and Blockset Authoring in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!