This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to use the nRF6350 board with nRF51822 Dev Kit ???

Hi guys,

I am getting started with your nRF51822 dev Kit. I got the nRFGo Starter Kit (nRF6310 Rev 1.4 mother board) as well. Most of the examples work as expected. But we couldn't make the LCD on the nRF6350 to work. We tried the nRF6350_radio_configuration_example, but the LCD screen doesn't show anything at all.

It seems it couldn't be initialized, no response at all.

Do I need to switch a jumper or anything ?

Nokah

Parents
  • I got that issue as well.

    They use TWI (I2C compatible) to control the display on nRF6350. Pin 24 of the nRF51822 is defined for SCL and pin 25 is defined for SDA. (see twi_master_config.h) However, they are not connected to the I2C pin on the nRF6350 board (pin 23 and 24 at the EXTA). So you have to manually connect pin 24 of the nRF51822, which is P3.0 on the motherboard to Pin 23 on the EXTA; and pin 25 on the nRF51822(P3.1) to Pin 24 on the EXTA.

    You can see the hack in the image attached.

Reply
  • I got that issue as well.

    They use TWI (I2C compatible) to control the display on nRF6350. Pin 24 of the nRF51822 is defined for SCL and pin 25 is defined for SDA. (see twi_master_config.h) However, they are not connected to the I2C pin on the nRF6350 board (pin 23 and 24 at the EXTA). So you have to manually connect pin 24 of the nRF51822, which is P3.0 on the motherboard to Pin 23 on the EXTA; and pin 25 on the nRF51822(P3.1) to Pin 24 on the EXTA.

    You can see the hack in the image attached.

Children
Related