Wiznet / WIZnet-S2E-Tool

Command line configuration & Test Tool for WIZnet Serial to Ethernet devices.
MIT License
9 stars 8 forks source link

Bug correction #8

Closed pccbezerra closed 4 years ago

pccbezerra commented 4 years ago

I am a "lucky" guy who got a WIZ device with MAC 00:08:DC:56:52:92, so when using WIZnet-S2E-Tool, it bugs beliving that the 56:52 is VR, and breaks the search. Solution is changing if b'VR' in replylists[i]: for if b'VR' in replylists[i][:2] :
@function parseresponse of WIZMSGHandler.py

the same should be done to MC, MN ...

Regards

renakim commented 4 years ago

Hello @pccbezerra, thank you for the issue. on WIZnet-S2E-Tool-GUI, there was a similar issue so I updated function. (not use 'MA' parameter and check parameter) I applied the same function to CLI Tool. Refer to #9 Thanks.

pccbezerra commented 4 years ago

Tested, and working. Thank you.