2025-02-02, 10:14 PM
(2025-02-02, 05:28 AM)redshift Wrote: Here are a couple things to check:
- If you plug the Tangara into your computer and turn it on, then (in a terminal) run
you should see messages about it recognizing the Tangara - a bunch of timestamps and usb-related messages, and "Product: Tangara" in there somewhere.Code:dmesg | tail -n 20
- In the same output, you should see something like "ttyACM1" that tells you the device it's using. If you then run
(or whatever the ACM number was) you should see some permissions and then the owning user and group, something like "root dialout". If you then runCode:ls -l /dev/ttyACM1
you should see "dialout" listed (or whatever the group was). If you don't, you need to add your user to that group using something likeCode:groups
and then logout/login or reboot.Code:sudo usermod -aG dialout $USER
Thank you! That did the trick and my device is now updated!