Matlab loadlibrary, reading from SUB20
Posted: Mon Jan 23, 2012 2:23 pm
Hi.
I'm stuck with using the old "loadlibrary" method in Matlab because my version doesn't support the .NET interface. I've been able to send commands with no problem, both to the LCD and the SPI interface. However, I'm unable to read anything back using Matlab. In my script I want to check if the module is properly connected to the USB port, so I'm trying to read the serial number of the module after I open it.
I run
hSub20=calllib('sub20', 'sub_open', libpointer);
calllib('sub20', 'sub_lcd_write', hSub20, 'hello' );
and I can see that communication is working properly because the LCD is updated.
I tried:
calllib('sub20', 'get_serial_number', hSub20, libpointer)
and I get an error "Method was not found"
What is the proper syntax to read the serial number? In addition, is there a way to test whether 'sub_open' worked properly?
I'm stuck with using the old "loadlibrary" method in Matlab because my version doesn't support the .NET interface. I've been able to send commands with no problem, both to the LCD and the SPI interface. However, I'm unable to read anything back using Matlab. In my script I want to check if the module is properly connected to the USB port, so I'm trying to read the serial number of the module after I open it.
I run
hSub20=calllib('sub20', 'sub_open', libpointer);
calllib('sub20', 'sub_lcd_write', hSub20, 'hello' );
and I can see that communication is working properly because the LCD is updated.
I tried:
calllib('sub20', 'get_serial_number', hSub20, libpointer)
and I get an error "Method was not found"
What is the proper syntax to read the serial number? In addition, is there a way to test whether 'sub_open' worked properly?