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

switching beacon mode to pairing/connectable mode without module reset nRF52832

Hello,

I am a newbie and need some help deciding the path to perform the following requirement. Any help is appreciated.

 Requirement:

I have Rigado BMD-350 module currently advertising in beacon mode. 

I would like to switch from beacon mode to connectable BLE mode (pairing mode) when a cell phone comes close to it and would like to connect.

Once connection is established, I would like to receive data from the cell phone and store it. and then close the connection and move back to beacon mode.

BMD-350 comes with BMDware which is out of date and is no longer supported. Instead, I would like to write open source code for nrf52832 (nrf module in BMD-350) to achieve the above requirement.

What is the best path to go about this requirement. Also which soft device is recommended?

Thank you

Parents
  • Hi,

    How do you intend to detect that the phone is close? The way I see it, there are (at least) two possible approaches:

    1) Always advertise non-connectable, but also scan in between. A phone with a custom app could advertise, and when your nRF detects the advertisement packets it can switch to connectable. This has the downside that scanning is typically less power-efficient, and a custom app is required (may not be an issue).

    2) Either alway advertise connectable (should not be a problem), or alternate between advertising non-connectable most of the time and connectable some of the time. Then the phone could connect when the nRF advertises in connectable mode.

    Since you are working with an nRF52832, I recomend you use the lastest nRF5 SDK (currently version 16, and SoftDevice S132 version 7.0.1).

  • Hi,

    Thank you for your prompt reply.

    If I would like to go with option 2, my question is in beacon mode can I always advertise connectable? 

    Also, when the phone would like to connect, what is the best way to pair them so that it connects to one phone and not multiple phones at the same time

    I will look in to the recommended version and SoftDevice. Thank you

  • I am going through the error handling as you suggested. Meanwhile, I wanted to build the ble_pheripheral_eddystone application in nRF5_SDK_15.3.0_59ac345 which is giving me build error in SES

    cannot find ../../../../../../external/micro-ecc/nrf52hf_armgcc/armgcc/micro_ecc_lib_nrf52.a: No such file or directory

    I tried the following 2 steps. but error still exists

    1) Download and install Windows 32-bit

    File: gcc-arm-none-eabi-6-2017-q2-update-win32-sha1.exe (82.57 MB)

    https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads/6-2017-q2-update

    2) Run build_all.sh or build_all.bat located in ..\nRF5_SDK_15.0.0_a53641a\external\micro-ecc

  • Hi,

    Running build_all.bat will resolve this error, provided the script runs without any problems. Can you copy-paste the output of the script? The error message should let us uknow what you are missing. (One common problem is if you don't have make in your path).

  • The script window opens and closes in a flash. Not sure how to copy paste the output.

    How to add make file in path??

  • "micro-ecc not found! Let's pull it from HEAD."
    Cloning into 'micro-ecc'...
    remote: Enumerating objects: 1086, done.
    remote: Total 1086 (delta 0), reused 0 (delta 0), pack-reused 1086
    Receiving objects: 100% (1086/1086), 647.94 KiB | 2.85 MiB/s, done.
    Resolving deltas: 100% (637/637), done.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.

Reply
  • "micro-ecc not found! Let's pull it from HEAD."
    Cloning into 'micro-ecc'...
    remote: Enumerating objects: 1086, done.
    remote: Total 1086 (delta 0), reused 0 (delta 0), pack-reused 1086
    Receiving objects: 100% (1086/1086), 647.94 KiB | 2.85 MiB/s, done.
    Resolving deltas: 100% (637/637), done.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.
    'make' is not recognized as an internal or external command,
    operable program or batch file.

Children
No Data
Related