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

How to Reset nRf 8001

I have a custom PCB and i have connected the MISO,MOSI,SCK,REQN and RDYN line from the nRF 8001 to Arduino. And uploaded your code of ble_uart_project.ino but nRF 8001 does not started advertising. When i debugged closely i came to know that nRF 8001 does not get reset as i am not getting any event from lib_aci_event_get() function. Sometimes i got error printed on Serial Monitor and i.e "Error in Setup" . I even tried Projects given by Red Bear Labs with their libraries, but still not able to get any event from nRF 8001 and it clearly means that nRF 8001 is not getting Reset.Because as soon as it get Reset i will get an event ACI_EVT_DEVICE_STARTED, but i am not getting this evt.

The custom PCB and the connection are absolutely right and i am powering nRF 8001 from 3.3V supply only.In the above setup i have not connected Reset pin from nRF 8001 to anu pin on Arduino? Do i need to connect this? Can you provide the code snippet which actually Resets the nRF 8001. I had even tried resetting through soft reset with the help of this function lib_aci_radio_reset() but again the same issue?

Help me over this!!

  • Try connecting the reset pin and use lib_aci_pin_reset to reset the chip. I would recommend downloading our latest arduino sdk from github: github.com/.../releases

    lib_aci_radio_reset does not reset the chip, only the radio, ref the product specification.

  • Which Arduino pin should i use to connect Reset line of Olimex Module. And this is the code of of your function:

    if (UNUSED != a_pins_local_ptr->reset_pin) { pinMode(a_pins_local_ptr->reset_pin, OUTPUT);

    if ((REDBEARLAB_SHIELD_V1_1 == a_pins_local_ptr->board_name) || (REDBEARLAB_SHIELD_V2012_07 == a_pins_local_ptr->board_name)) { //The reset for the Redbearlab v1.1 and v2012.07 boards are inverted and has a Power On Reset //circuit that takes about 100ms to trigger the reset digitalWrite(a_pins_local_ptr->reset_pin, 1); delay(100); digitalWrite(a_pins_local_ptr->reset_pin, 0); } else { digitalWrite(a_pins_local_ptr->reset_pin, 1); digitalWrite(a_pins_local_ptr->reset_pin, 0); digitalWrite(a_pins_local_ptr->reset_pin, 1); } }

    Well this time i am not using Red Bear Shield but i think this will work only for them. I have my own custom pcb which i have bought it from https://www.olimex.com/Products/Modules/RF/MOD-nRF8001/ . Will this work for my module also what should i use in board_name? Should i use REDBEARLAB_SHIELD_V1_1 as board_name?

  • The Redbearlab v1.1 and V2012_07 shields did not connect the reset line of the nRF8001 to any of the microcontroller pins, this was a bug. This has been corrected in the Redbearlab v2.x shields.

    For all boards other than Redbearlab v1.1 and V2012_07 , use BOARD_DEFAULT as the board name. This also assumes that the reset line of the nRF8001 is connected to an mcu pin. Specify the pin using aci_state.aci_pins.reset_pin = <<pin number>>;

  • Now i have connected the reset pin to Arduino pin 4 and also specified it like this aci_state.aci_pins.reset_pin = 4;

    But still it is not advertising, actually i am not getting any evt from nrf 8001. I have read that if nrf 8001 will get reset then it gives ACI_EVT_DEVICE_STARTED but i am not getting this. How should i make this advertising? It has taken my so much tie but it is not advertising,help me in getting it start advertising.

  • I'm facing problem here>>

    case ACI_DEVICE_SETUP: /* When the device is in the setup mode*/ Serial.println(F("Evt Device Started: Setup")); if (ACI_STATUS_TRANSACTION_COMPLETE != do_aci_setup(&aci_state)) { Serial.println(F("Error in ACI Setup")); }

    I'm getting the Error in ACI setup. any reason why its so? and where this do_aci_setup() method is located?

Related