FIX Raspberry Pi Mux Pins #14

Closed
opened 2020-09-11 01:33:17 +00:00 by kemonine · 0 comments
Owner

Picked wrong blend of pins initially, need to update pin out and remake proto board wing

Notes

  • MUST use sercom 1, 2, 3 or 4
  • Check the wiring diagram for which sercom ports are safe
  • Check the below to ensure the right sercom pads are used for wiring

Pinouts (the S4:1 is a sercom) : https://cdn-learn.adafruit.com/assets/assets/000/046/244/original/adafruit_products_Feather_M0_Basic_Proto_v2.2-1.png?1504885373

typedef enum
{
	SERCOM_RX_PAD_0 = 0,
	SERCOM_RX_PAD_1,
	SERCOM_RX_PAD_2,
	SERCOM_RX_PAD_3
} SercomRXPad;

typedef enum
{
	UART_TX_PAD_0 = 0x0ul,  // Only for UART
	UART_TX_PAD_2 = 0x1ul,  // Only for UART
	UART_TX_RTS_CTS_PAD_0_2_3 = 0x2ul,  // Only for UART with TX on PAD0, RTS on PAD2 and CTS on PAD3
} SercomUartTXPad;
Picked wrong blend of pins initially, need to update pin out and remake proto board wing Notes - MUST use sercom 1, 2, 3 or 4 - Check the wiring diagram for which sercom ports are safe - Check the below to ensure the right sercom pads are used for wiring Pinouts (the S4:1 is a sercom) : https://cdn-learn.adafruit.com/assets/assets/000/046/244/original/adafruit_products_Feather_M0_Basic_Proto_v2.2-1.png?1504885373 ``` typedef enum { SERCOM_RX_PAD_0 = 0, SERCOM_RX_PAD_1, SERCOM_RX_PAD_2, SERCOM_RX_PAD_3 } SercomRXPad; typedef enum { UART_TX_PAD_0 = 0x0ul, // Only for UART UART_TX_PAD_2 = 0x1ul, // Only for UART UART_TX_RTS_CTS_PAD_0_2_3 = 0x2ul, // Only for UART with TX on PAD0, RTS on PAD2 and CTS on PAD3 } SercomUartTXPad; ```
kemonine added the
bug
label 2020-09-11 01:33:28 +00:00
kemonine self-assigned this 2020-09-11 01:33:30 +00:00
kemonine added this to the Raspberry PI Muxer project 2020-09-11 01:33:34 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kemonine/serial_debugger#14
No description provided.