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

  • 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.

  • Hi,

    Please run the script from a command line instead of double-clicking. When you double click it will close like this when there is an error, not giving you time to read it.

    It is not the Makefile that should be in your path, it is the make utility. You should get make from somewhere, and put it in your windows path. For instance using Gow, or some other distribution og GNU tools.

Reply Children
No Data
Related