We are planning to use nRF7002 module for our product. we having below queries

  • Already we are using the ESP32 C6 module as a host. Can we connect nRF7002 to ESP32 through the SPI interface?
  • How can we integrate with ESP32 C6? How can we access nRF7002?
  • Is there any command sequence?
  • can we disable 5 Ghz in the software if needed ?
Parents Reply Children
  • As you suggested, Twi libraries and used twim twis blocking example. we done below set up as suggested REDME file.

    To run the sample correctly, connect pins as follows:
    * `LOOPBACK_PIN_1A` with `LOOPBACK_PIN_1B`.
    * `LOOPBACK_PIN_2A` with `LOOPBACK_PIN_2B`

    > Refer to pin definitions in `common/nrfx_example.h`.

    You should monitor the output from the board to check if it is as expected.


    We are getting in the log and we are not getting any value.

    [00:00:00.277,740] <inf> NRFX_EXAMPLE: Starting nrfx_twim_twis blocking example.

    [00:00:00.285,552] <inf> NRFX_EXAMPLE: Message to send: Nordic Semiconductor
    [00:00:00.285,583] <inf> NRFX_EXAMPLE: Content of slave RX buffer:
    [00:00:00.285,614] <inf> NRFX_EXAMPLE: Content of master RX buffer:
    [00:00:00.310,852] <inf> NRFX_EXAMPLE: m_tx_buffer_master -> m_rx_buffer_slave -
    > m_rx_buffer_master
    [00:00:00.310,882] <inf> NRFX_EXAMPLE: Content of slave RX buffer: Nordic Semic
    onductor
    [00:00:00.310,943] <inf> NRFX_EXAMPLE: Content of master RX buffer: Nordic Semic
    onductor

Related