So, I changed the baud rate set in Serial1.begin from 57600 to 115200, and now fates recognizes the grid. However, the teletype doesn’t seem to like that rate – it works at 57600 but not 115200. Not sure what the correct rate should be?
Edit: it seems like serialoscd likes a baud rate of 115200 but not 57600. So the Teletype is the odd one out?
Edit2:
Looking more at the baud rates I found these lines in uhi_ftdi.c from libavr32
/// baud rate
// rq : 3
// value: 26 (baudrate: 115200)
// value: 49206 (baudrate : 57600)
// index: 0
send_ctl_request(FTDI_DEVICE_OUT_REQTYPE,
FTDI_REQ_BAUDRATE,
NULL, 0,
0, 49206,
NULL);
Which, from the comments, would seem to indicate a baud rate of 57600.
I don’t really understand how a grid can operate using multiple baud rates (e.g., 115200 when using Norns and 57600 when using Teletype).