FelixDoyon Would it be better if they are both connected from the same source?
Is this what you are planning?
COMPUTER
192.168.6.1 192.168.9.1
-------------------------------------------
USB A USB A
| |
| |
USB micro USB micro
V V
192.168.6.2 192.168.9.2
Bela <--host USB A ---- USB A device--> Bela
Mini 192.168.8.1 192.168.8.2 Mini
1 2
In this case, it may be fine without hw modifications because they are both being powered by the same 5V source, so the voltage will be the same shouldn't have any current going through.
FelixDoyon Do the same on the second one, but with different address (for USB A port and micro USB port)
You don't need to do the same on the second one: the stock one will act as the host and the modified one as the device. You do need some changes, though.
Assume BelaMini 1 is the stock one and BelaMini 2 is the modified one. Look at the diagram above: each USB cable is a network interface visible only to the two devices that are connected to it. The computer would see both devices on 192.168.6.2 and so won't be able to tell them apart. You have to modify the IP range of one of the two Belas so that it doesn't overlap. The easiest way is to further modify BelaMini 2:
BelaMini 1 will also need to see the other board, which shows up as usb2 as 192.168.8.2, so it needs to either dhcp on that port or - if it fails - set the IP statically. The static IP is set by editing /etc/network/interfaces on BelaMini1 and adding:
auto usb2
iface usb2 inet static
address 192.168.8.1 # note the .1
netmask 255.255.255.0
network 192.168.8.0
Side note: if this is your actual use case and the only reason for the USB-A <-> USB-A connection was to have both boards accessible from the host computer at once, then there would have probably been easier solutions via forwarding some ports over ssh that would have made the setup easier when plugging one Bela's USB-A into the other's USB-micro. This would have allowed to even access the IDE of both boards over a single connection to the host. Accessing the scope may have been more of a problem, though.