eterey / pymodbus3

A full Modbus protocol written in Python 3.
http://uzumaxy.github.io/pymodbus3/
BSD 3-Clause "New" or "Revised" License
39 stars 11 forks source link

Fix wrong name of recv method in serial server. #10

Closed tomkcook closed 6 years ago

tomkcook commented 6 years ago

Addresses #9. There is an attempt to map socket API functions to serial API functions but the name receive is used instead of recv.

eterey commented 6 years ago

Thanks!