123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023 |
- /**
- * \file appl_sample_example_9.c
- *
- * Source File for Generic OnOff Client Standalone application without CLI or
- * menu based console input interface over GATT Bearer and Function as Proxy
- * Device or a normal node based on the proxy configuration setting
- * once Provisioning is Complete.
- */
- /*
- * Copyright (C) 2018. Mindtree Ltd.
- * All rights reserved.
- */
- #if (MESH_STANDALONE == 9)
- /* ----------------------------------------- Header File Inclusion */
- #include "MS_common.h"
- #include "MS_access_api.h"
- #include "MS_config_api.h"
- #include "MS_health_server_api.h"
- #include "MS_generic_onoff_api.h"
- #include "MS_net_api.h"
- #include "blebrr.h"
- #include "nvsto.h"
- #include "model_state_handler_pl.h"
- /* Console Input/Output */
- #define CONSOLE_OUT(...) printf(__VA_ARGS__)
- #define CONSOLE_IN(...) scanf(__VA_ARGS__)
- void appl_dump_bytes(UCHAR *buffer, UINT16 length);
- void appl_mesh_sample (void);
- /* ----------------------------------------- External Global Variables */
- /* ----------------------------------------- Exported Global Variables */
- API_RESULT UI_generic_onoff_client_cb
- (
- /* IN */ MS_ACCESS_MODEL_HANDLE * handle,
- /* IN */ UINT32 opcode,
- /* IN */ UCHAR * data_param,
- /* IN */ UINT16 data_len
- );
- API_RESULT UI_health_server_cb
- (
- MS_ACCESS_MODEL_HANDLE * handle,
- UINT32 opcode,
- UCHAR * data_param,
- UINT16 data_len
- );
- void UI_prov_bind(UCHAR brr, UCHAR index);
- API_RESULT UI_prov_callback
- (
- PROV_HANDLE * phandle,
- UCHAR event_type,
- API_RESULT event_result,
- void * event_data,
- UINT16 event_datalen
- );
- void UI_proxy_callback
- (
- NETIF_HANDLE * handle,
- UCHAR p_evt,
- UCHAR * data_param,
- UINT16 data_len
- );
- void UI_proxy_start_adv(MS_SUBNET_HANDLE subnet_handle, UCHAR proxy_adv_mode);
- API_RESULT UI_register_foundation_model_servers
- (
- MS_ACCESS_ELEMENT_HANDLE element_handle
- );
- API_RESULT UI_register_generic_onoff_model_client
- (
- MS_ACCESS_ELEMENT_HANDLE element_handle
- );
- void UI_register_prov(void);
- void UI_register_proxy(void);
- void UI_sample_reinit(void);
- void UI_gatt_iface_event_pl_cb
- (
- UCHAR ev_name,
- UCHAR ev_param
- );
- API_RESULT UI_sample_check_app_key(void);
- API_RESULT UI_set_brr_scan_rsp_data (void);
- void UI_setup_prov(UCHAR role, UCHAR brr);
- /* ----------------------------------------- Static Global Variables */
- /* ----------------------------------------- Functions */
- /* Model Server - Foundation Models */
- /* Health Server - Test Routines */
- static void UI_health_self_test_00(UINT8 test_id, UINT16 company_id)
- {
- }
- static void UI_health_self_test_01(UINT8 test_id, UINT16 company_id)
- {
- }
- static void UI_health_self_test_FF(UINT8 test_id, UINT16 company_id)
- {
- }
- /* List of Self Tests */
- static MS_HEALTH_SERVER_SELF_TEST UI_health_server_self_tests[] =
- {
- {
- 0x00, /* Test ID: 0x00 */
- UI_health_self_test_00
- },
- {
- 0x01, /* Test ID: 0x01 */
- UI_health_self_test_01
- },
- {
- 0xFF, /* Test ID: 0xFF */
- UI_health_self_test_FF
- }
- };
- /**
- * \brief Health Server application Asynchronous Notification Callback.
- *
- * \par Description
- * Health Server calls the registered callback to indicate events occurred to the
- * application.
- *
- * \param handle Model Handle.
- * \param opcode Opcode.
- * \param data_param Data associated with the event if any or NULL.
- * \param data_len Size of the event data. 0 if event data is NULL.
- */
- API_RESULT UI_health_server_cb
- (
- MS_ACCESS_MODEL_HANDLE * handle,
- UINT32 opcode,
- UCHAR * data_param,
- UINT16 data_len
- )
- {
- CONSOLE_OUT(
- "Health Server Callback. Not handled. Returning\n");
- return API_SUCCESS;
- }
- API_RESULT UI_register_foundation_model_servers
- (
- MS_ACCESS_ELEMENT_HANDLE element_handle
- )
- {
- /* Configuration Server */
- MS_ACCESS_MODEL_HANDLE UI_config_server_model_handle;
- MS_ACCESS_MODEL_HANDLE UI_health_server_model_handle;
- API_RESULT retval;
- /* Health Server */
- UINT16 company_id;
- MS_HEALTH_SERVER_SELF_TEST * self_tests;
- UINT32 num_self_tests;
- CONSOLE_OUT("In Model Server - Foundation Models\n");
- retval = MS_config_server_init(element_handle, &UI_config_server_model_handle);
- CONSOLE_OUT("Config Model Server Registration Status: 0x%04X\n", retval);
- /* Health Server */
- company_id = MS_DEFAULT_COMPANY_ID;
- self_tests = &UI_health_server_self_tests[0];
- num_self_tests = sizeof(UI_health_server_self_tests)/sizeof(MS_HEALTH_SERVER_SELF_TEST);
- retval = MS_health_server_init
- (
- element_handle,
- &UI_health_server_model_handle,
- company_id,
- self_tests,
- num_self_tests,
- UI_health_server_cb
- );
- if (API_SUCCESS == retval)
- {
- CONSOLE_OUT(
- "Health Server Initialized. Model Handle: 0x%04X\n",
- UI_health_server_model_handle);
- }
- else
- {
- CONSOLE_OUT(
- "[ERR] Sensor Server Initialization Failed. Result: 0x%04X\n",
- retval);
- }
- return retval;
- }
- /* Generic OnOff Model Client */
- void UI_generic_onoff_set(UCHAR state)
- {
- API_RESULT retval;
- MS_GENERIC_ONOFF_SET_STRUCT param;
- CONSOLE_OUT
- ("Send Generic Onoff Set\n");
- param.onoff = state;
- param.tid = 0;
- param.optional_fields_present = 0x00;
- retval = MS_generic_onoff_set(¶m);
- CONSOLE_OUT
- ("Retval - 0x%04X\n", retval);
- }
- /**
- * \brief Client Application Asynchronous Notification Callback.
- *
- * \par Description
- * Generic_Onoff client calls the registered callback to indicate events occurred to the application.
- *
- * \param [in] handle Model Handle.
- * \param [in] opcode Opcode.
- * \param [in] data_param Data associated with the event if any or NULL.
- * \param [in] data_len Size of the event data. 0 if event data is NULL.
- */
- API_RESULT UI_generic_onoff_client_cb
- (
- /* IN */ MS_ACCESS_MODEL_HANDLE * handle,
- /* IN */ UINT32 opcode,
- /* IN */ UCHAR * data_param,
- /* IN */ UINT16 data_len
- )
- {
- API_RESULT retval;
- retval = API_SUCCESS;
- CONSOLE_OUT (
- "[GENERIC_ONOFF_CLIENT] Callback. Opcode 0x%04X\n", opcode);
- appl_dump_bytes(data_param, data_len);
- switch(opcode)
- {
- case MS_ACCESS_GENERIC_ONOFF_STATUS_OPCODE:
- {
- CONSOLE_OUT(
- "MS_ACCESS_GENERIC_ONOFF_STATUS_OPCODE\n");
- }
- break;
- }
- return retval;
- }
- API_RESULT UI_register_generic_onoff_model_client
- (
- MS_ACCESS_ELEMENT_HANDLE element_handle
- )
- {
- /* Generic OnOff Server */
- MS_ACCESS_MODEL_HANDLE UI_generic_onoff_client_model_handle;
- API_RESULT retval;
- CONSOLE_OUT("In Generic OnOff Model Client\n");
- retval = MS_generic_onoff_client_init
- (
- element_handle,
- &UI_generic_onoff_client_model_handle,
- UI_generic_onoff_client_cb
- );
- if (API_SUCCESS == retval)
- {
- CONSOLE_OUT(
- "Generic Onoff Client Initialized. Model Handle: 0x%04X\n",
- UI_generic_onoff_client_model_handle);
- }
- else
- {
- CONSOLE_OUT(
- "[ERR] Generic Onoff Client Initialization Failed. Result: 0x%04X\n",
- retval);
- }
- return retval;
- }
- /* Provisionee */
- /** Public Key OOB Flag */
- #define UI_PROV_PUBKEY_OOBINFO 0x00
- /** Static OOB Flag */
- #define UI_PROV_STATIC_OOBINFO 0x00
- /** Output OOB Actions Supported */
- #ifdef MESH_SAMPLE_HAVE_OUTPUT_OOB_DISPLAY
- /** Currently Selecting the Output OOB Actions as Alphanumeric OOB Action */
- #define UI_PROV_OUTPUT_OOB_ACTIONS PROV_MASK_OOOB_ACTION_ALPHANUMERIC
- /** Output OOB Maximum size supported */
- #define UI_PROV_OUTPUT_OOB_SIZE 0x04
- #else /* MESH_SAMPLE_HAVE_OUTPUT_OOB_DISPLAY */
- /** Currently Selecting the Output OOB Actions as Alphanumeric OOB Action */
- #define UI_PROV_OUTPUT_OOB_ACTIONS 0x00
- /** Output OOB Maximum size supported */
- #define UI_PROV_OUTPUT_OOB_SIZE 0x00
- #endif /* MESH_SAMPLE_HAVE_OUTPUT_OOB_DISPLAY */
- /** Input OOB Actions supported */
- #define UI_PROV_INPUT_OOB_ACTIONS 0x00
- /** Input OOB Maximum size supported */
- #define UI_PROV_INPUT_OOB_SIZE 0x00
- /** Beacon setup timeout in seconds */
- #define UI_PROV_SETUP_TIMEOUT_SECS 30
- /** Attention timeout for device in seconds */
- #define UI_PROV_DEVICE_ATTENTION_TIMEOUT 30
- #define PROV_AUTHVAL_SIZE_PL 16
- /** Authentication values for OOB Display - To be made random */
- #define UI_DISPLAY_AUTH_DIGIT 3
- #define UI_DISPLAY_AUTH_NUMERIC 35007
- #define UI_DISPLAY_AUTH_STRING "F00L"
- /** Provisioning capabilities of local device */
- DECL_STATIC PROV_CAPABILITIES_S UI_prov_capab =
- {
- /** Number of Elements */
- 0x01,
- /** Supported algorithms */
- PROV_MASK_ALGO_EC_FIPS_P256,
- /** Public key type */
- UI_PROV_PUBKEY_OOBINFO,
- /** Static OOB type */
- UI_PROV_STATIC_OOBINFO,
- /** Output OOB information */
- { UI_PROV_OUTPUT_OOB_ACTIONS, UI_PROV_OUTPUT_OOB_SIZE },
- /** Input OOB information */
- { UI_PROV_INPUT_OOB_ACTIONS, UI_PROV_INPUT_OOB_SIZE },
- };
- /** Unprovisioned device identifier */
- //DECL_STATIC PROV_DEVICE_S UI_lprov_device =
- PROV_DEVICE_S UI_lprov_device =
- {
- /** UUID */
- {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF},
- /** OOB Flag */
- 0x00,
- /**
- * Encoded URI Information
- * For example, to give a web address, "https://www.abc.com"
- * the URI encoded data would be -
- * 0x17 0x2F 0x2F 0x77 0x77 0x77 0x2E 0x61 0x62 0x63 0x2E 0x63 0x6F 0x6D
- * where 0x17 is the URI encoding for https:
- */
- NULL
- };
- /** Current role of application - Provisioner/Device */
- DECL_STATIC UCHAR UI_prov_role;
- /** Provisioning Handle */
- DECL_STATIC PROV_HANDLE UI_prov_handle;
- API_RESULT UI_prov_callback
- (
- PROV_HANDLE * phandle,
- UCHAR event_type,
- API_RESULT event_result,
- void * event_data,
- UINT16 event_datalen
- )
- {
- PROV_DATA_S * rdata;
- PROV_OOB_TYPE_S * oob_info;
- API_RESULT retval;
- UCHAR authstr[PROV_AUTHVAL_SIZE_PL << 1];
- UINT32 authnum;
- UCHAR authtype;
- UCHAR * pauth;
- UINT16 authsize;
- switch (event_type)
- {
- case PROV_EVT_PROVISIONING_SETUP:
- CONSOLE_OUT("Recvd PROV_EVT_PROVISIONING_SETUP\n");
- CONSOLE_OUT("Status - 0x%04X\n", event_result);
- /* Display the attention timeout */
- CONSOLE_OUT("Attention TImeout - %d\n", *((UCHAR *)event_data));
- break;
- case PROV_EVT_OOB_DISPLAY:
- CONSOLE_OUT("Recvd PROV_EVT_OOB_DISPLAY\n");
- CONSOLE_OUT("Status - 0x%04X\n", event_result);
- /* Reference the Authenticatio Type information */
- oob_info = (PROV_OOB_TYPE_S *)event_data;
- CONSOLE_OUT("Authenticaion Action - 0x%02X\n", oob_info->action);
- CONSOLE_OUT("Authenticaion Size - 0x%02X\n", oob_info->size);
- /* If role is Device, the action is of Output OOB, else Input OOB */
- if (PROV_ROLE_DEVICE == UI_prov_role)
- {
- if (PROV_OOOB_ACTION_ALPHANUMERIC == oob_info->action)
- {
- authtype = 1;
- }
- else if (PROV_OOOB_ACTION_NUMERIC == oob_info->action)
- {
- authtype = 2;
- }
- else
- {
- authtype = 0;
- }
- }
- else
- {
- if (PROV_IOOB_ACTION_ALPHANUMERIC == oob_info->action)
- {
- authtype = 1;
- }
- else if (PROV_IOOB_ACTION_NUMERIC == oob_info->action)
- {
- authtype = 2;
- }
- else
- {
- authtype = 0;
- }
- }
- if (1 == authtype)
- {
- EM_str_copy (authstr, UI_DISPLAY_AUTH_STRING);
- CONSOLE_OUT("\n\n>>> AuthVal - %s <<<\n\n", authstr);
- pauth = authstr;
- authsize = (UINT16)EM_str_len(authstr);
- }
- else if (2 == authtype)
- {
- authnum = (UINT32)UI_DISPLAY_AUTH_NUMERIC;
- CONSOLE_OUT("\n\n>>> AuthVal - %d <<<\n\n", authnum);
- pauth = (UCHAR *)&authnum;
- authsize = sizeof(UINT32);
- }
- else
- {
- authnum = (UINT32)UI_DISPLAY_AUTH_DIGIT;
- CONSOLE_OUT("\n\n>>> AuthVal - %d <<<\n\n", authnum);
- pauth = (UCHAR *)&authnum;
- authsize = sizeof(UINT32);
- }
- /* Call to input the oob */
- CONSOLE_OUT("Setting the Authval...\n");
- retval = MS_prov_set_authval(&UI_prov_handle, pauth, authsize);
- CONSOLE_OUT("Retval - 0x%04X\n", retval);
- break;
- case PROV_EVT_OOB_ENTRY:
- CONSOLE_OUT("Recvd PROV_EVT_OOB_ENTRY\n");
- CONSOLE_OUT("Status - 0x%04X\n", event_result);
- /* Reference the Authenticatio Type information */
- oob_info = (PROV_OOB_TYPE_S *)event_data;
- CONSOLE_OUT("Authenticaion Action - 0x%02X\n", oob_info->action);
- CONSOLE_OUT("Authenticaion Size - 0x%02X\n", oob_info->size);
- break;
- case PROV_EVT_DEVINPUT_COMPLETE:
- CONSOLE_OUT("Recvd PROV_EVT_DEVINPUT_COMPLETE\n");
- CONSOLE_OUT("Status - 0x%04X\n", event_result);
- break;
- case PROV_EVT_PROVDATA_INFO:
- CONSOLE_OUT("Recvd PROV_EVT_PROVDATA_INFO\n");
- CONSOLE_OUT("Status - 0x%04X\n", event_result);
- /* Reference the Provisioning Data */
- rdata = (PROV_DATA_S *)event_data;
- CONSOLE_OUT("NetKey : "); appl_dump_bytes(rdata->netkey, PROV_KEY_NETKEY_SIZE);
- CONSOLE_OUT("Key ID : 0x%04X\n", rdata->keyid);
- CONSOLE_OUT("Flags : 0x%02X\n", rdata->flags);
- CONSOLE_OUT("IVIndex : 0x%08X\n", rdata->ivindex);
- CONSOLE_OUT("UAddr : 0x%04X\n", rdata->uaddr);
- /* Provide Provisioning Data to Access Layer */
- MS_access_cm_set_prov_data
- (
- rdata
- );
- break;
- case PROV_EVT_PROVISIONING_COMPLETE:
- CONSOLE_OUT("Recvd PROV_EVT_PROVISIONING_COMPLETE\n");
- CONSOLE_OUT("Status - 0x%04X\n", event_result);
- if (API_SUCCESS == event_result)
- {
- /* Already Set while handling PROV_EVT_PROVDATA_INFO */
- /* LED ON/OFF for Provisioning Indication Abstraction Call */
- mesh_model_device_provisioned_ind_pl();
- }
- break;
- default:
- CONSOLE_OUT("Unknown Event - 0x%02X\n", event_type);
- }
- return API_SUCCESS;
- }
- void UI_register_prov(void)
- {
- API_RESULT retval;
- CONSOLE_OUT("Registering with Provisioning layer...\n");
- retval = MS_prov_register(&UI_prov_capab, UI_prov_callback);
- CONSOLE_OUT("Retval - 0x%04X\n", retval);
- }
- void UI_setup_prov(UCHAR role, UCHAR brr)
- {
- API_RESULT retval;
- if (PROV_BRR_GATT == brr)
- {
- blebrr_gatt_mode_set(BLEBRR_GATT_PROV_MODE);
- }
- if (PROV_ROLE_PROVISIONER != role)
- {
- CONSOLE_OUT("Setting up Device for Provisioning ...\n");
- retval = MS_prov_setup
- (
- brr,
- role,
- &UI_lprov_device,
- UI_PROV_SETUP_TIMEOUT_SECS
- );
- UI_prov_role = PROV_ROLE_DEVICE;
- }
- else
- {
- CONSOLE_OUT("Setting up Provisioner for Provisioning ...\n");
- retval = MS_prov_setup
- (
- brr,
- role,
- NULL,
- UI_PROV_SETUP_TIMEOUT_SECS
- );
- UI_prov_role = PROV_ROLE_PROVISIONER;
- }
- CONSOLE_OUT("Retval - 0x%04X\n", retval);
- }
- void UI_prov_bind(UCHAR brr, UCHAR index)
- {
- API_RESULT retval;
- /* Call to bind with the selected device */
- CONSOLE_OUT("Binding with the selected device...\n");
- retval = MS_prov_bind(brr, &UI_lprov_device, UI_PROV_DEVICE_ATTENTION_TIMEOUT, &UI_prov_handle);
- CONSOLE_OUT("Retval - 0x%04X\n", retval);
- }
- void UI_proxy_start_adv(MS_SUBNET_HANDLE subnet_handle, UCHAR proxy_adv_mode)
- {
- API_RESULT retval;
- DECL_STATIC UINT8 first_time = 0;
- if (0 == first_time)
- {
- /**
- * Register with Proxy Module as Device is going to be a Proxy.
- * This is typically a one-time-event, and hence registering the
- * PROXY when Proxy ADV is being initiated!
- */
- UI_register_proxy();
- first_time = 1;
- }
- /* Set the role to Proxy with bearer */
- blebrr_gatt_mode_set(BLEBRR_GATT_PROXY_MODE);
- CONSOLE_OUT("Start Proxy Advertisements with %s for Subnet 0x%04X\n",
- (proxy_adv_mode == MS_PROXY_NET_ID_ADV_MODE) ? "Network ID" : "Node Identity",
- subnet_handle);
- retval = MS_proxy_server_adv_start
- (
- subnet_handle,
- proxy_adv_mode
- );
- CONSOLE_OUT("Retval - 0x%04X\n", retval);
- }
- void UI_proxy_callback
- (
- NETIF_HANDLE * handle,
- UCHAR p_evt,
- UCHAR * data_param,
- UINT16 data_len
- )
- {
- UCHAR role;
- MS_IGNORE_UNUSED_PARAM(data_len);
- switch(p_evt)
- {
- case MS_PROXY_UP_EVENT:
- CONSOLE_OUT(
- "\n\n[PROXY APPL]: MS_PROXY_UP_EVENT Received for NETIF Handle 0x%02X\n\n", *handle);
- if (NULL != data_param)
- {
- /* Catch the current role into a local */
- role = data_param[0];
- if (BRR_SERVER_ROLE == role)
- {
- /* Send Secure Network Beacons */
- /* MS_net_broadcast_secure_beacon(0x0000); */
- }
- }
- break;
- case MS_PROXY_DOWN_EVENT:
- CONSOLE_OUT(
- "\n\n[PROXY APPL]: MS_PROXY_DOWN_EVENT Received for NETIF Handle 0x%02X\n\n", *handle);
- break;
- default:
- CONSOLE_OUT(
- "\n\n[PROXY APPL ERR]: Unknown Event Received for NETIF Handle 0x%02X!!\n\n", *handle);
- break;
- }
- }
- void UI_register_proxy(void)
- {
- API_RESULT retval;
- CONSOLE_OUT("Registering with Proxy layer...\n");
- retval = MS_proxy_register(UI_proxy_callback);
- CONSOLE_OUT("Retval - 0x%04X\n", retval);
- }
- API_RESULT UI_set_brr_scan_rsp_data (void)
- {
- /**
- * Currently setting MT-MESH-SAMPLE-9 as Complete Device Name!
- * This can be updated to each individual devices as per requirement.
- */
- UCHAR UI_brr_scanrsp_data[] =
- {
- /**
- * Shortened Device Name: MT-MESH-SAMPLE-9
- */
- 0x11, 0x09, 'M', 'T', '-', 'M', 'E', 'S', 'H', '-', 'S', 'A', 'M', 'P', 'L', 'E', '-', '9'
- };
- CONSOLE_OUT("\n Setting MT-MESH-SAMPLE-8 as Complete Device Name!\n");
- /* Set the Scan Response Data at the Bearer Layer */
- blebrr_set_adv_scanrsp_data_pl
- (
- UI_brr_scanrsp_data,
- sizeof(UI_brr_scanrsp_data)
- );
- return API_SUCCESS;
- }
- EM_timer_handle thandle;
- void timeout_cb (void * args, UINT16 size)
- {
- thandle = EM_TIMER_HANDLE_INIT_VAL;
- UI_sample_reinit();
- }
- void UI_gatt_iface_event_pl_cb
- (
- UCHAR ev_name,
- UCHAR ev_param
- )
- {
- switch(ev_name)
- {
- /* GATT Bearer BLE Link Layer Disconnected */
- case BLEBRR_GATT_IFACE_DOWN:
- CONSOLE_OUT("\r\n >> GATT Bearer BLE Link Layer Disconnection Event Received!\r\n");
- //UI_sample_reinit();
- EM_start_timer (&thandle, 3, timeout_cb, NULL, 0);
- break;
- /* GATT Bearer BLE Link Layer Connected */
- case BLEBRR_GATT_IFACE_UP:
- CONSOLE_OUT("\r\n >> GATT Bearer BLE Link Layer Connection Event Received!\r\n");
- /* Do Nothing! */
- if (BLEBRR_GATT_PROV_MODE == blebrr_gatt_mode_get())
- {
- MS_brr_bcast_end(BRR_BCON_TYPE_UNPROV_DEVICE, BRR_BCON_ACTIVE);
- }
- else if (BLEBRR_GATT_PROXY_MODE == blebrr_gatt_mode_get())
- {
- MS_proxy_server_adv_stop();
- }
- break;
- case BLEBRR_GATT_IFACE_ENABLE:
- CONSOLE_OUT("\r\n >> GATT Bearer Active Event Received!\r\n");
- {
- if (BLEBRR_GATT_PROV_MODE == ev_param)
- {
- /* Call to bind with the selected device */
- UI_prov_bind(PROV_BRR_GATT, 0);
- }
- }
- break;
- case BLEBRR_GATT_IFACE_DISABLE:
- CONSOLE_OUT("\r\n >> GATT Bearer Inactive Event Received!\r\n");
- break;
- /* Unknown Event! */
- default:
- CONSOLE_OUT("\r\n >> GATT Bearer BLE Link Layer Unknown Event 0x%02X Received!\r\n", ev_name);
- /* Do Nothing! */
- break;
- }
- }
- void appl_mesh_sample (void)
- {
- MS_ACCESS_NODE_ID node_id;
- MS_ACCESS_ELEMENT_DESC element;
- MS_ACCESS_ELEMENT_HANDLE element_handle;
- API_RESULT retval;
- MS_CONFIG * config_ptr;
- #ifdef MS_HAVE_DYNAMIC_CONFIG
- MS_CONFIG config;
- /* Initialize dynamic configuration */
- MS_INIT_CONFIG(config);
- config_ptr = &config;
- #else
- config_ptr = NULL;
- #endif /* MS_HAVE_DYNAMIC_CONFIG */
- /* Initialize OSAL */
- EM_os_init();
- /* Initialize Debug Module */
- EM_debug_init();
- /* Initialize Timer Module */
- EM_timer_init();
- timer_em_init();
- /* Initialize utilities */
- nvsto_init();
- /* Initialize Mesh Stack */
- MS_init(config_ptr);
- /* Register with underlying BLE stack */
- blebrr_register();
- /* Register GATT Bearer Connection/Disconnection Event Hook */
- blebrr_register_gatt_iface_event_pl(UI_gatt_iface_event_pl_cb);
- /* Enable LED Port */
- /* Platform Abstraction Initializations of GPIOs/LEDs etc. */
- mesh_model_platform_init_pl();
- /* LED ON */
- /* LED ON/OFF for BOOT UP Indication Abstraction Call */
- mesh_model_device_bootup_ind_pl();
- /* Create Node */
- retval = MS_access_create_node(&node_id);
- /* Register Element */
- /**
- * TBD: Define GATT Namespace Descriptions from
- * https://www.bluetooth.com/specifications/assigned-numbers/gatt-namespace-descriptors
- *
- * Using 'main' (0x0106) as Location temporarily.
- */
- element.loc = 0x0106;
- retval = MS_access_register_element
- (
- node_id,
- &element,
- &element_handle
- );
- if (API_SUCCESS == retval)
- {
- /* Register foundation model servers */
- retval = UI_register_foundation_model_servers(element_handle);
- }
- if (API_SUCCESS == retval)
- {
- /* Register Generic OnOff model client */
- retval = UI_register_generic_onoff_model_client(element_handle);
- }
- /* Configure as provisionee/device */
- UI_register_prov();
- /**
- * Set Scan Response Data Before Starting Provisioning.
- * This is optional/additional set of Data that the device can
- * set to enhance the User Experience.
- * For Example, set a specific device name or URL as part of the
- * Scan Response Data when awaiting connections over GATT bearer.
- */
- UI_set_brr_scan_rsp_data();
- //UI_sample_reinit();
- EM_start_timer (&thandle, 5, timeout_cb, NULL, 0);
- return;
- }
- API_RESULT UI_sample_check_app_key(void)
- {
- MS_APPKEY_HANDLE handle;
- UINT8 * key;
- UINT8 aid;
- DECL_CONST UINT8 t_key[16] = {0};
- API_RESULT retval;
- CONSOLE_OUT("Fetching App Key for Handle 0x0000\n");
- handle = 0x0000;
- retval = MS_access_cm_get_app_key
- (
- handle,
- &key,
- &aid
- );
- /* Check Retval. Print App Key */
- if (API_SUCCESS == retval)
- {
- CONSOLE_OUT("App Key[0x%02X]: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\r\n",
- handle, key[0], key[1], key[2], key[3], key[4], key[5], key[6], key[7],
- key[8], key[9], key[10], key[11], key[12], key[13], key[14], key[15]);
- if (0 == EM_mem_cmp(key, t_key, 16))
- {
- /* NO AppKey Bound */
- retval = API_FAILURE;
- }
- else
- {
- /* Found a Valid App Key */
- /* Keeping the retval as API_SUCCESS */
- }
- }
- return retval;
- }
- /**
- * On GATT Bearer Disconnection or on Startup:
- * 1. If device not provisioned, start unprovisioned beacons over GATT bearer
- * 2. If device is provisioned and App Key is bound i.e. Device is Configured
- * - Check if Proxy Feature is enabled then Start ADV as Proxy,
- * Else,
- * Do nothing!
- * Else,
- * If device is provisioned and App Key is not bound i.e. Device is not Configured
- * Start ADV as Proxy.
- */
- void UI_sample_reinit(void)
- {
- API_RESULT retval;
- MS_NET_ADDR addr;
- UCHAR is_prov_req;
- UCHAR role, brr;
- UCHAR state;
- retval = API_SUCCESS;
- is_prov_req = MS_TRUE;
- retval = MS_access_cm_get_primary_unicast_address(&addr);
- if (API_SUCCESS == retval)
- {
- if (MS_NET_ADDR_UNASSIGNED != addr)
- {
- /* Set Provisioning is not Required */
- is_prov_req = MS_FALSE;
- }
- }
- if (MS_TRUE == is_prov_req)
- {
- /* Start Provisioning over GATT here */
- /**
- * setup <role:[1 - Device, 2 - Provisioner]> <bearer:[1 - Adv, 2 - GATT]
- */
- role = PROV_ROLE_DEVICE;
- brr = PROV_BRR_GATT;
- /**
- * Setting up an Unprovisioned Device over GATT
- */
- UI_setup_prov(role, brr);
- CONSOLE_OUT("\r\n Setting up as an Unprovisioned Device\r\n");
- }
- else
- {
- /* Fetch PROXY feature state */
- MS_access_cm_get_features_field(&state, MS_FEATURE_PROXY);
- /**
- * Check if the Device is Configured.
- * If not Configured, Start Proxy ADV.
- * If it is Configured,
- * Check if the Proxy Feature is Enabled.
- * If not enabled, then Do Nothing!
- * If it is, Start Proxy ADV.
- */
- if (API_SUCCESS == UI_sample_check_app_key())
- {
- if (MS_ENABLE == state)
- {
- CONSOLE_OUT("\r\n Provisioned Device - Starting Proxy with NetID on Subnet 0x0000!\r\n");
- /* Start Proxy ADV with Network ID here */
- UI_proxy_start_adv(0x0000, MS_PROXY_NET_ID_ADV_MODE);
- }
- else
- {
- /**
- * Do Nothing!
- * Already Scaning is Enabled at Start Up
- */
- blebrr_scan_enable();
- }
- }
- else
- {
- /**
- * Provisioned but not configured device.
- * Still checking if the PROXY Feature is enabled or not.
- * Depending on the state of Proxy Feature:
- * - If enabled, Start Proxy ADV with Network ID
- * - Else, Start Proxy ADV with Node Identity.
- */
- (MS_ENABLE == state) ?
- UI_proxy_start_adv(0x0000, MS_PROXY_NET_ID_ADV_MODE):
- UI_proxy_start_adv(0x0000, MS_PROXY_NODE_ID_ADV_MODE);
- }
- }
- }
- //void UI_set_uuid_octet (UCHAR uuid_0)
- //{
- // UI_lprov_device.uuid[0] = uuid_0;
- //}
- #endif /* (MESH_STANDALONE == 9) */
|