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

ISSUE : TWI device detected at address

Hi Everyone,

In this code I'm face a problem. The issue is when i debug, it shows "<info> app: TWI device detected at address 0x6D".  Please find attached a snapshot of the issue.

 Need your help ASAP. Thanks

Regards,

Yuvaraj

Parents Reply Children
  • You should be able to run the twi_scanner example on your custom board by changing the TWI pins. If you do not have UART on your board, you can view the log output on RTT by enabling RTT backend for NRF_LOG module by setting this in sdk_config.h file:

    #ifndef NRF_LOG_BACKEND_RTT_ENABLED
    #define NRF_LOG_BACKEND_RTT_ENABLED 1
    #endif
    
    #ifndef NRF_LOG_BACKEND_UART_ENABLED
    #define NRF_LOG_BACKEND_UART_ENABLED 0
    #endif

Related