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

Changing company identifier in nrf52810 , nRF5_SDK_15.3.0.59ac345

HI,

I'm looking for company identifier in the software but I could not locate it. Can you show me where is it located?

Parents
  • Hi David

    The company ID you are highlighting in your initial question is not the company ID that is advertised in the advertising packet, and is showing the company ID of who's responsible for the Bluetooth stack in use. If you were to look at the same ID in I.E. an Android phone, this company ID would most likely belong to Qualcomm, as they are responsible for the Bluetooth stack in most Android phones.

    If you want to advertise your company ID in the advertising packet, that is easy, however. Just add the following define to your main.c file, where the 0x0059 would be replaced with your company's ID of course:

    #define APP_COMPANY_IDENTIFIER          0x0059                             /**< Company identifier for Nordic Semiconductor ASA. as per www.bluetooth.org. */

    Best regards,

    Simon

Reply
  • Hi David

    The company ID you are highlighting in your initial question is not the company ID that is advertised in the advertising packet, and is showing the company ID of who's responsible for the Bluetooth stack in use. If you were to look at the same ID in I.E. an Android phone, this company ID would most likely belong to Qualcomm, as they are responsible for the Bluetooth stack in most Android phones.

    If you want to advertise your company ID in the advertising packet, that is easy, however. Just add the following define to your main.c file, where the 0x0059 would be replaced with your company's ID of course:

    #define APP_COMPANY_IDENTIFIER          0x0059                             /**< Company identifier for Nordic Semiconductor ASA. as per www.bluetooth.org. */

    Best regards,

    Simon

Children
No Data
Related