RPI Zero + Multiple USB Ethernet dongles + HTTPS #297
-
Hi there, I have a project which I need to communicate with an ethernet RFID reader, an ethernet ADAM I/O and a backend web API over HTTPS. I'm thinking of connecting the RFID reader and the ADAM I/O directly using crossover cables so there's no need to use a network hub. Questions: Is it possible for a RPI Zero to communicate with 3 USB Ethernet dongles over an external usb hub using Circle? If so, does the hub/dongle need to be specific brand/chipset? And what about RPI 3/4 using on board ethernet + 2 USB ethernet dongles? As for communicating with a server over https, is there any supported library that I can use? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
HTTPS you can get via mbedtls which is part of circle-stdlib. But AFAIK there are no drivers in circle for USB-ethernet dongles or rfid readers. |
Beta Was this translation helpful? Give feedback.
-
Well, being that all those devices are ethernet, I assume with proper documentation one can write drivers for them. |
Beta Was this translation helpful? Give feedback.
-
Unfortunately this is not possible, because Circle can handle only one active network interface at a time. Yes, there aren't drivers for specific USB Ethernet NICs in Circle, only a driver for the QEMU CDC Ethernet NIC. TLS support is in the circle-stdlib project, which includes Circle as a submodule. |
Beta Was this translation helpful? Give feedback.
Unfortunately this is not possible, because Circle can handle only one active network interface at a time. Yes, there aren't drivers for specific USB Ethernet NICs in Circle, only a driver for the QEMU CDC Ethernet NIC. TLS support is in the circle-stdlib project, which includes Circle as a submodule.