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
All of the code was there except the linker was failing to clear the bss section because I added too many .zeros. The should have only been the exported globals that start with _ like _szero = .. Fixing that and turn on the usb transmit fixed everything.
@@ -43,8 +48,10 @@ In another terminal from `micropython/atmel-samd`:
43
48
(gdb) continue
44
49
45
50
## Connecting
46
-
The current Atmel SAMD implementation only works over UART. To connect to it from OSX do something like this:
51
+
All boards are currently configured to work over USB rather than UART. To
52
+
connect to it from OSX do something like this:
47
53
48
54
screen /dev/tty.usbmodem142422 115200
49
55
50
-
You may not see a prompt immediately because it doesn't know you connected. To get one either hit enter to get `>>>` or do CTRL-B to get the full header.
56
+
You may not see a prompt immediately because it doesn't know you connected. To
57
+
get one either hit enter to get `>>>` or do CTRL-B to get the full header.
0 commit comments