I think XDIMAX SUB-20 VB.NET I2C Libary have a Big Bug.

All about Sub-20 Multi Interface USB Adapter USB to I2C, SPI, GPIO, RS232, RS485, Ir, LCD

Moderator: serg

Post Reply
pawow
Posts: 8
Joined: Fri Jun 04, 2010 3:50 am

I think XDIMAX SUB-20 VB.NET I2C Libary have a Big Bug.

Post by pawow »

I think XDIMAX SUB-20 VB.NET I2C Libary have a Big Bug.

I'm compared Subtool(v1.6.4) with VB.NET Example Project(included with driver).

Subtool is Good work, but VB.NET Example Project is not good... because meaningless extra 8bit clock tansmit.

I try test 2 condition.
1st : 3bytes TX
2nd : 1byte TX

Please Be carefully See the Fig.1, 2, 3, 4, 5, 6, 7, 8

Fig.1 is Subtool(1.6.4) Setting Screen.... for 3 bytes tx.
Image

Fig.2 is Waveform of Fig.1
Image
http://h.imagehost.org/view/0020/3_byte ... ool_v1_6_4

Fig.3 is VB.NET Example Project Setting Screen.... for 3 bytes tx.
Image

Fig.4 is Waveform of Fig.3
Image
http://h.imagehost.org/view/0908/3_byte ... le_Project



Fig.5 is Subtool(1.6.4) Setting Screen.... for single byte tx.
Image

Fig.6 is Waveform of Fig.5
Image

Fig.7 is VB.NET Example Project Setting Screen.... for single byte tx.
Image

Fig.8 is Waveform of Fig.7
Image


Please Check Fig.2 and Fig.4 and Fig.6 and Fig.8

VB.NET Example Project is over byte TX.

I Don't Understood. That is malFunction.

I'm Crazy now.....

Please Send me Solution....

serg
Posts: 143
Joined: Mon Aug 31, 2009 9:17 pm

Re: I think XDIMAX SUB-20 VB.NET I2C Libary have a Big Bug.

Post by serg »

Hi pawow,
You are right. This looks like a bug in our VB.NET sample code. We use the "ReDim" keyword incorrectly :oops: .
You can fix this by replacing any ReDim(X) with ReDim(X-1), where X - is a previous function argument.
So, for instance, in the DoI2CWrite function replace the "ReDim Bytes(N)" statement with ReDim Bytes(N - 1)
Thank you for reporting this bug. We will fix it in our forthcoming release.

Regards

Post Reply