Page 1 of 1
matlab >NET functions
Posted: Wed Apr 04, 2012 6:39 am
by wanxiang
Hi:
Is there any manual or function list about the matlab .NET functions?
I found only a few examples avaliable on the forum. Is there anyway I can get the full function list?
Thanks
Re: matlab >NET functions
Posted: Thu Apr 05, 2012 2:09 am
by serg
Hi wanxiang,
The entire list of methods along with sample code is available in the SUB-20 .NET component manual document which is included in the standard SUB-20 software installation package. I have attached one for your convenience. Please note that the .NET component is just a wrapper around the main SUB-20 interface library. If you need more detailed information please refer to the SUB-20 User Manual document
http://www.xdimax.com/sub20/doc/sub20-man.pdf
Re: matlab >NET functions
Posted: Thu Apr 05, 2012 2:47 am
by wanxiang
Thanks for your quick reply.
Now receive some error information from I2C.
The error code from getlasterror is 0. But acctural error code seems to be 11(I2C error)
I also get the I2C status, it is 0xE1(Arbitration lost in start).
Now I connect the SUB-20 to a scope directly and I can't see any output from SUB-20.
Any idea? These are my matlab code:
TransferSize=1;
asminfo = NET.addAssembly('C:\Program Files\SUB-20\bin\sub20dnc.dll');
sub20 = Xdimax.Sub20();
% simulate do { ... } while(0) loop
for k=0:0
% Open first available SUB-20 device
if ~ sub20.Open(0)
break;
end
% Configure
if ~ sub20.I2C_SetFrequency(100000);
break;
end
i2c_buff=NET.createArray('System.Byte',TransferSize);
i2c_buff.Set(0,hex2dec('2a'));
%sub20.I2C_IssueStart();
% Set GPIO12 to logical '1'
if ~ sub20.I2C_Write( hex2dec('01'), hex2dec('01'), 1, i2c_buff)
break;
end
info = sub20.I2C_GetStatus();
%sub20.I2C_IssueStop();
end
err = sub20.GetLastError();
% Close SUB-20 device
sub20.Close()
if err > 0
fprintf('Error %d\n', sub20.GetLastError() )
error('Error!')
end
Thanks
Re: matlab >NET functions
Posted: Thu Apr 05, 2012 4:08 am
by wanxiang
By the way, even I use subtool, I also receive similar error

- I2C.jpg (87.46 KiB) Viewed 23675 times
Re: matlab >NET functions
Posted: Fri Apr 06, 2012 7:24 am
by xol
You have not selected Slave Address to read/write.
Try to run I2C Scan to see slave devices available on the Bus.