You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately some Arduino boards may have cloned chips, which may appear as "Bricked Counterfeit" in Linux.
$lsusb
0403:0000 Future Technology Devices International, Ltd H4SMK 7 Port Hub / Bricked Counterfeit FT232 Serial (UART) IC
To work, maybe just add the rule:
Create or edit the file: $sudo nano /etc/udev/rules.d/99-libftdi.rules
Add or edit the file using this content: ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS={idProduct}=="0000", OWNER="user", MODE="0777", GROUP="dialout"
Press Control+X keys to exit the editor (Press Y to save on exit).
Hello,
Unfortunately some Arduino boards may have cloned chips, which may appear as "Bricked Counterfeit" in Linux.
To work, maybe just add the rule:
Create or edit the file:
$sudo nano /etc/udev/rules.d/99-libftdi.rules
Add or edit the file using this content:
ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS={idProduct}=="0000", OWNER="user", MODE="0777", GROUP="dialout"
Press Control+X keys to exit the editor (Press Y to save on exit).
Source: https://askubuntu.com/questions/632261/udev-rules-for-ftdi-not-completely-working
The text was updated successfully, but these errors were encountered: