Hello, I'm away from my computer at the moment, but I got my Glasgow about a week and a half ago, and tried it out the day I got it. I haven't done much since other than trying out some tests. I'm a software developer for work, but I haven't done anything embedded outside of hobby stuff (so far, but maybe I can do some at work sometime in the next year or so). I've done a bit of Arduino development, some fpga firmware fixing on my system76 laptop (mainly with directions), and a bit of Raspberry Pi stuff. I've done some hobby embedded programming at the local Rust meetup, but that's the extent of my experience so far and I want to get more into this stuff. I think I'm (definitely) out of my depth here, but the Glasgow seems super cool! I want to get gud with this to where I know what I'm doing, but right now I'm kinda in the "solution looking for a problem to fix" stage. I haven't plugged anything into it yet, and need to figure out what I want to plug in to try something real out. Running it by itself, I'm getting these errors when going through the basic usage examples: ``` $ glasgow run uart -V 3.3 --pin-tx 0 --pin-rx 1 -b 57600 tty I: g.device.hardware: generating bitstream ID 590710258ea5e1680297c2f7b1d23a74 I: g.cli: running handler for applet 'uart' I: g.applet.interface.uart: port(s) A, B voltage set to 3.3 V I: g.applet.interface.uart: running on a TTY; enter `Ctrl+\ q` to quit W: g.applet.interface.uart: 27 frame errors detected W: g.applet.interface.uart: 6090 frame errors detected W: g.applet.interface.uart: 6090 frame errors detected W: g.applet.interface.uart: 6086 frame errors detected ... $ glasgow run spi-controller -V 3.3 --pin-sck 0 --pin-cs 1 --pin-copi 2 --pin-cipo 3 '0301235ff5' I: g.device.hardware: generating bitstream ID be1d939afc68983758f499a44d8ff088 I: g.cli: running handler for applet 'spi-controller' I: g.applet.interface.spi_controller: port(s) A, B voltage set to 3.3 V ffffffffff $ glasgow run selftest I: g.device.hardware: generating bitstream ID 808a6d4b2fb06b363b0327e2375fefa2 I: g.cli: running handler for applet 'selftest' I: g.applet.internal.selftest: running self-test mode pins-int E: g.applet.internal.selftest: mode pins-int is broken on device revision C3 ``` (At this point, the user LEDs turn off, but the status and VIO LEDs are still on. Resetting gets the user LEDs back) ``` $ glasgow safe $ glasgow run spi-controller -V 3.3 --pin-sck 0 --pin-cs 1 --pin-copi 2 --pin-cipo 3 '0301235ff5' I: g.device.hardware: generating bitstream ID be1d939afc68983758f499a44d8ff088 I: g.cli: running handler for applet 'spi-controller' I: g.applet.interface.spi_controller: port(s) A, B voltage set to 3.3 V 0000000000 ``` What can I do to fix this? Do I need to plug spi and uart things in for those basic examples to work or am I doing bad things?