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

How to connect nRF2740 to Arduino Micro

Hi, I'd like to connect my nRF2740 to my MCU Arduino Micro and test it with the sample codes found in your GIT repo. How can I do this? Best regards, Alessandro

Parents
  • Thank you very much for the explanation. I just have one problem. If I use the following pin configuration (described in the hello world example), the nRF8001 is not working and I can't discover it using my Master Control Panel:

    
            aci_state.aci_pins.board_name = REDBEARLAB_SHIELD_V1_1; //See board.h for details REDBEARLAB_SHIELD_V1_1 or BOARD_DEFAULT
    	aci_state.aci_pins.reqn_pin   = 9; //SS for Nordic board, 9 for REDBEARLAB_SHIELD_V1_1
    	aci_state.aci_pins.rdyn_pin   = 8; //3 for Nordic board, 8 for REDBEARLAB_SHIELD_V1_1
    	aci_state.aci_pins.mosi_pin   = MOSI;
    	aci_state.aci_pins.miso_pin   = MISO;
    	aci_state.aci_pins.sck_pin    = SCK;
    	
    	aci_state.aci_pins.spi_clock_divider          = SPI_CLOCK_DIV8;
    	  
    	aci_state.aci_pins.reset_pin             = 4; //4 for Nordic board, UNUSED for REDBEARLAB_SHIELD_V1_1
    	aci_state.aci_pins.active_pin            = UNUSED;
    	aci_state.aci_pins.optional_chip_sel_pin = UNUSED;
    
    
Reply Children
No Data
Related