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

Advertesiment

Hi,

I'm currently wprking on my project, my project it's about swarm, before the master swarm can advertise the message to the slave swarm through blehandler function now we want to develop so we can send order from smartphone to the master, I'm facing the problem that the smartphone can't detect the connection because of blehandler function, can ble advertise to slave device while it established a connection with smartphone? should i build a Thread or a mesh?

Parents
  • We need you to rephrase your question because it is very difficult to understand what it is you want. 

    What is a swarm?

    "I'm facing the problem that the smartphone can't detect the connection because of blehandler function"
    - what are you talking about here, what is the context? 

    "can ble advertise to slave device while it established a connection with smartphone?"
    You can use directed advertisements while in connections with another devices. The S140 supports up to 20 concurrent links, so that should not be an issue.

    "should i build a Thread or a mesh?"
    That depends on your use-case. What is your use-case, what is it that want to achieve with this project? 

  • Hi haakonsh,

    I'm really thankfull for your help, so my project is to advance the previous project it's about Drone-Swarm (so more than one drone with concept master and slave) the previous project has a function called BLEhandler that send message over BLE such as position etc. and now my job is i want to establish a connection with a smartphone so we can send an order such on/off, fly, back and forth to master drone. as i want to buid the connection with smartphone there is an interference from function BLEHandler, which i believe it advertise the message to the slave, so the smartphone can't detect my board, but if i comment the function it can detect my board.

    but thanks you've answered a half of my questions.

    "can ble advertise to slave device while it established a connection with smartphone?"
    You can use directed advertisements while in connections with another devices. The S140 supports up to 20 concurrent links, so that should not be an issue.

    any suggestion how to do it?

    I sincerely appreciate your help.

  • Sorry my bad, i was wrong, the first drone remain as a master even after it flies

    it should look like this.

  • In our examples you can set the number of peripheral and central links the SoftDevice will support at compile time with the NRF_SDH_BLE_PERIPHERAL_LINK_COUNT, RF_SDH_BLE_CENTRAL_LINK_COUNT, and NRF_SDH_BLE_TOTAL_LINK_COUNT, found in sdk_config.h.

    I suggest you look at the ble_app_uart example for how to create a custom service. If you do not know what a service and a characteristic is I suggest you google it, as there is plenty of resources that have described that already. 

    I propose a service with one characteristic for battery status and another one for commands. If you have other needs such as Location, Intent, etc. you can add characteristics for that as well.

  • thank for your help Slight smile

    so to be sure i sum up what we discuss,

    for my connection problem caused by previous project function called BLEhandler (which i believe in advertising mode) i should either build a piconet or make my 1st drone act central and peripheral, is it sound right to you?

  • "either build a piconet or make my 1st drone act central and peripheral"
    The first drone should act as both a central and peripheral. 

    I see the definition of a piconet is outdated, as it now also encompasses BLE and not just EDR. With BLE you can have a piconet with any number of nodes, where any node can concurrently serve as both a central and peripheral in the same network, or in another network for that matter. 

    The limitation for how many nodes a single node can connect to is given by the BLE controller it uses. The BLE controller in our S132 SoftDevice can connect to up to 20 nodes at the same time. 

  • thanks now it's clear for me Slight smile

    just to let you know i'm using softdevice s140

Reply Children
No Data
Related