budulinek / arduino-modbus-rtu-tcp-gateway

Arduino-based Modbus RTU to Modbus TCP/UDP gateway with web interface. Allows you to connect Modbus RTU slaves (such as sensors, energy meters, HVAC devices) to Modbus TCP/UDP masters (such as home automation systems). You can adjust settings through web interface.
GNU General Public License v3.0
165 stars 48 forks source link

Arduino OPTA port #32

Open patkepa opened 7 months ago

patkepa commented 7 months ago

Hello! I'm interested in porting this project to the Arduino OPTA(STM32H747XI) Are there any suggestions in regards to replacing the Atmega based code of this project, for STM32?

Thanks!

budulinek commented 6 months ago

What ethernet chip is used in Arduino OPTA? Which ethernet chip do you want to use with STM32?

The code is tailor-made for the Wiznet W5100/W5200/W5500 ethernet chip. It would be very difficult to "port" the code to different ethernet chip.

papercodeIN commented 1 month ago

Hi Creator,

Could you guide me how to implement this in wiznet w5100s-evb-pico (Raspberry Pi Pico) ?

budulinek commented 1 month ago

Hi Creator,

Could you guide me how to implement this in wiznet w5100s-evb-pico (Raspberry Pi Pico) ?

I have no idea on how to port it to RPi. Some functions and libraries used by this project are specific to W5X00 ethernet chips (Ethernet.h library), some functions I use are specific to ATmega chips (random number generator, reset function, also probably the Serial library...).

Disclosure: I am a 100% hobbyist coder with no formal coding education. I made this gateway for fun and for my self-education. A kind of challenge - what else can I fit into a very limited flash and RAM resources of the ATmega chip. I did not and do not have an intention to port this project to bigger and more powerful platforms.