Body Composition Service API. More...
#include "gr_includes.h"
#include "custom_config.h"
#include "ble_prf_utils.h"
#include <stdint.h>
#include <stdbool.h>
Go to the source code of this file.
Classes | |
struct | bcs_meas_flag_t |
Body composition Measurement flag data. More... | |
struct | bcs_meas_val_t |
Body composition Measurement data. More... | |
struct | bcs_evt_t |
Body Composition Service event. More... | |
struct | bcs_init_t |
Body Composition Service Init variable. More... | |
Macros | |
#define | BCS_CONNECTION_MAX 10 |
#define | BCS_MEAS_VAL_LEN_MAX 20 |
#define | BCS_FEAT_VAL_LEN_MAX 4 |
#define | INDI_PAYLOAD_HEADER_LEN 3 |
#define | NUM_PACKETS 2 |
#define | MEAS_PACKET_FIRST 0 |
#define | MEAS_PACKET_SUB 1 |
#define | BCS_CACHE_MEAS_NUM_MAX 25 |
#define | BCS_MEAS_UNSUCCESS 0xFFFF |
#define | BCS_MEAS_FLAG_DEFAULT 0x01FF |
#define | BCS_CHAR_FEAT_MANDATORY 0x3F |
Typedefs | |
typedef void(* | bcs_evt_handler_t) (bcs_evt_t *p_evt) |
Body Composition Service event handler type. More... | |
Functions | |
sdk_err_t | bcs_service_init (bcs_init_t *p_bcs_init) |
Initialize a Body Composition Service instance and add in the DB. More... | |
sdk_err_t | bcs_measurement_send (uint8_t conn_idx, bcs_meas_val_t *p_meas, uint8_t cache_num) |
Send Body Composition Measurement indication. More... | |
uint16_t * | bcs_start_handle_get (void) |
Get the pointer to the start handle of Body Composition Service. More... | |
Body Composition Service API.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of GOODIX nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file bcs.h.