This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

customized board for nrf52833

i wish to change P0.13 as tx, P0.15 as rx , P0.17 as ctx , P0.20 as rtx 

I change in bsp definitions and it worked for uart peripheral example, 

#define LED_1          NRF_GPIO_PIN_MAP(0,8)//13
#define LED_2          NRF_GPIO_PIN_MAP(0,14)
#define LED_3          NRF_GPIO_PIN_MAP(0,6)//15
#define LED_4          NRF_GPIO_PIN_MAP(0,16)
#define LED_START      LED_1
#define LED_STOP       LED_4

#define LEDS_ACTIVE_STATE 0

#define LEDS_LIST { LED_1, LED_2, LED_3, LED_4 }

#define LEDS_INV_MASK  LEDS_MASK

#define BSP_LED_0      8
#define BSP_LED_1      14
#define BSP_LED_2      6
#define BSP_LED_3      16

#define BUTTONS_NUMBER 4

#define BUTTON_1       11
#define BUTTON_2       12
#define BUTTON_3       24
#define BUTTON_4       25
#define BUTTON_PULL    NRF_GPIO_PIN_PULLUP

#define BUTTONS_ACTIVE_STATE 0

#define BUTTONS_LIST { BUTTON_1, BUTTON_2, BUTTON_3, BUTTON_4 }

#define BSP_BUTTON_0   BUTTON_1
#define BSP_BUTTON_1   BUTTON_2
#define BSP_BUTTON_2   BUTTON_3
#define BSP_BUTTON_3   BUTTON_4

#define RX_PIN_NUMBER  15
#define TX_PIN_NUMBER  13
#define CTS_PIN_NUMBER 17
#define RTS_PIN_NUMBER 20
#define HWFC           true

I also change pin configuration in openthread library files 

[nRF5 SDK for Thread and Zigbee v4.1.0 ROOT]\external\openthread\project\openthread\examples\platforms\nrf528xx\nrf52833\transport-config.h per your requirements.

and recompiled the binary files and included in cli uart ftd example for pca10100.

but it is not working

Related