makerdiary / pitaya-go

An Open-Source IoT Development Platform with Multiprotocol Wireless Connectivity
https://wiki.makerdiary.com/pitaya-go/
MIT License
68 stars 9 forks source link

Incorrect silkscreen for RXD #1

Open nitz opened 4 years ago

nitz commented 4 years ago

The pinout diagram lists RXD as P0.26, and the silkscreen says P25. P0.25 is the bottom most GPIO on the other side, also labeled P25, so I imagine the silk for the RXD pin should be P26

caizelin commented 4 years ago

@nitz the silkscreen and examples are correct, but the pinout diagram need to be updated. Also see the board config:

/** UART configurations, only used for debug&test */
#define RX_PIN_NUMBER              NRF_GPIO_PIN_MAP(0,27)
#define TX_PIN_NUMBER              NRF_GPIO_PIN_MAP(0,26)
#define HWFC                       (false)

Thanks for your feedback.