initial commit
This commit is contained in:
Vendored
+143
@@ -0,0 +1,143 @@
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Glucose profile collector.
|
||||
*
|
||||
* Copyright (c) 2012-2018 Arm Ltd.
|
||||
*
|
||||
* Copyright (c) 2019 Packetcraft, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
#ifndef GLPC_API_H
|
||||
#define GLPC_API_H
|
||||
|
||||
#include "att_api.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*! \addtogroup GLUCOSE_PROFILE
|
||||
* \{ */
|
||||
|
||||
/**************************************************************************************************
|
||||
Macros
|
||||
**************************************************************************************************/
|
||||
|
||||
/*! \brief Glucose service enumeration of handle indexes of characteristics to be discovered */
|
||||
enum
|
||||
{
|
||||
GLPC_GLS_GLM_HDL_IDX, /*!< \brief Glucose measurement */
|
||||
GLPC_GLS_GLM_CCC_HDL_IDX, /*!< \brief Glucose measurement CCC descriptor */
|
||||
GLPC_GLS_GLMC_HDL_IDX, /*!< \brief Glucose measurement context */
|
||||
GLPC_GLS_GLMC_CCC_HDL_IDX, /*!< \brief Glucose measurement context CCC descriptor */
|
||||
GLPC_GLS_GLF_HDL_IDX, /*!< \brief Glucose feature */
|
||||
GLPC_GLS_RACP_HDL_IDX, /*!< \brief Record access control point */
|
||||
GLPC_GLS_RACP_CCC_HDL_IDX, /*!< \brief Record access control point CCC descriptor */
|
||||
GLPC_GLS_HDL_LIST_LEN /*!< \brief Handle list length */
|
||||
};
|
||||
|
||||
/**************************************************************************************************
|
||||
Data Types
|
||||
**************************************************************************************************/
|
||||
|
||||
/*! \brief Glucose service RACP filter type */
|
||||
typedef struct
|
||||
{
|
||||
union
|
||||
{
|
||||
uint16_t seqNum; /*!< \brief Sequence number filter */
|
||||
} param; /*!< \brief Parameter union */
|
||||
uint8_t type; /*!< \brief Filter type */
|
||||
} glpcFilter_t;
|
||||
|
||||
/**************************************************************************************************
|
||||
Function Declarations
|
||||
**************************************************************************************************/
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Perform service and characteristic discovery for Glucose service.
|
||||
* Parameter pHdlList must point to an array of length \ref GLPC_GLS_HDL_LIST_LEN.
|
||||
* If discovery is successful the handles of discovered characteristics and
|
||||
* descriptors will be set in pHdlList.
|
||||
*
|
||||
* \param connId Connection identifier.
|
||||
* \param pHdlList Characteristic handle list.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void GlpcGlsDiscover(dmConnId_t connId, uint16_t *pHdlList);
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Process a value received in an ATT read response, notification, or indication
|
||||
* message. Parameter pHdlList must point to an array of length \ref GLPC_GLS_HDL_LIST_LEN.
|
||||
* If the ATT handle of the message matches a handle in the handle list the value
|
||||
* is processed, otherwise it is ignored.
|
||||
*
|
||||
* \param pHdlList Characteristic handle list.
|
||||
* \param pMsg ATT callback message.
|
||||
*
|
||||
* \return \ref ATT_SUCCESS if handle is found, \ref ATT_ERR_NOT_FOUND otherwise.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
uint8_t GlpcGlsValueUpdate(uint16_t *pHdlList, attEvt_t *pMsg);
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Send a command to the glucose service record access control point.
|
||||
*
|
||||
* \param connId Connection identifier.
|
||||
* \param handle Attribute handle.
|
||||
* \param opcode Command opcode.
|
||||
* \param oper Command operator or 0 if no operator required.
|
||||
* \param pFilter Command filter parameters or NULL of no parameters required.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void GlpcGlsRacpSend(dmConnId_t connId, uint16_t handle, uint8_t opcode, uint8_t oper,
|
||||
glpcFilter_t *pFilter);
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Set the last received glucose measurement sequence number.
|
||||
*
|
||||
* \param seqNum Glucose measurement sequence number.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void GlpcGlsSetLastSeqNum(uint16_t seqNum);
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Get the last received glucose measurement sequence number.
|
||||
*
|
||||
* \return Last received glucose measurement sequence number.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
uint16_t GlpcGlsGetLastSeqNum(void);
|
||||
|
||||
/*! \} */ /* GLUCOSE_PROFILE */
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif /* GLPC_API_H */
|
||||
Vendored
+535
@@ -0,0 +1,535 @@
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Glucose profile collector.
|
||||
*
|
||||
* Copyright (c) 2012-2018 Arm Ltd.
|
||||
*
|
||||
* Copyright (c) 2019 Packetcraft, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
|
||||
#include <string.h>
|
||||
#include "wsf_types.h"
|
||||
#include "wsf_assert.h"
|
||||
#include "wsf_trace.h"
|
||||
#include "util/bstream.h"
|
||||
#include "svc_ch.h"
|
||||
#include "app_api.h"
|
||||
#include "glpc_api.h"
|
||||
|
||||
/**************************************************************************************************
|
||||
Macros
|
||||
**************************************************************************************************/
|
||||
|
||||
/* Length of response data contained in a received RACP message */
|
||||
#define GLPC_GLS_RACP_RSP_LEN 4
|
||||
|
||||
/**************************************************************************************************
|
||||
Local Variables
|
||||
**************************************************************************************************/
|
||||
|
||||
/*!
|
||||
* Glucose service characteristics for discovery
|
||||
*/
|
||||
|
||||
/*! Glucose measurement */
|
||||
static const attcDiscChar_t glpcGlsGlm =
|
||||
{
|
||||
attGlmChUuid,
|
||||
ATTC_SET_REQUIRED
|
||||
};
|
||||
|
||||
/*! Glucose measurement CCC descriptor */
|
||||
static const attcDiscChar_t glpcGlsGlmCcc =
|
||||
{
|
||||
attCliChCfgUuid,
|
||||
ATTC_SET_REQUIRED | ATTC_SET_DESCRIPTOR
|
||||
};
|
||||
|
||||
/*! Glucose measurement context */
|
||||
static const attcDiscChar_t glpcGlsGlmc =
|
||||
{
|
||||
attGlmcChUuid,
|
||||
0
|
||||
};
|
||||
|
||||
/*! Glucose measurement context CCC descriptor */
|
||||
static const attcDiscChar_t glpcGlsGlmcCcc =
|
||||
{
|
||||
attCliChCfgUuid,
|
||||
ATTC_SET_DESCRIPTOR
|
||||
};
|
||||
|
||||
/*! Glucose feature */
|
||||
static const attcDiscChar_t glpcGlsGlf =
|
||||
{
|
||||
attGlfChUuid,
|
||||
ATTC_SET_REQUIRED
|
||||
};
|
||||
|
||||
/*! Record access control point */
|
||||
static const attcDiscChar_t glpcGlsRacp =
|
||||
{
|
||||
attRacpChUuid,
|
||||
ATTC_SET_REQUIRED
|
||||
};
|
||||
|
||||
/*! Record access control point CCC descriptor */
|
||||
static const attcDiscChar_t glpcGlsRacpCcc =
|
||||
{
|
||||
attCliChCfgUuid,
|
||||
ATTC_SET_REQUIRED | ATTC_SET_DESCRIPTOR
|
||||
};
|
||||
|
||||
/*! List of characteristics to be discovered; order matches handle index enumeration */
|
||||
static const attcDiscChar_t *glpcGlsDiscCharList[] =
|
||||
{
|
||||
&glpcGlsGlm, /*! Glucose measurement */
|
||||
&glpcGlsGlmCcc, /*! Glucose measurement CCC descriptor */
|
||||
&glpcGlsGlmc, /*! Glucose measurement context */
|
||||
&glpcGlsGlmcCcc, /*! Glucose measurement context CCC descriptor */
|
||||
&glpcGlsGlf, /*! Glucose feature */
|
||||
&glpcGlsRacp, /*! Record access control point */
|
||||
&glpcGlsRacpCcc /*! Record access control point CCC descriptor */
|
||||
};
|
||||
|
||||
/* sanity check: make sure handle list length matches characteristic list length */
|
||||
WSF_CT_ASSERT(GLPC_GLS_HDL_LIST_LEN == ((sizeof(glpcGlsDiscCharList) / sizeof(attcDiscChar_t *))));
|
||||
|
||||
/*! Control block */
|
||||
static struct
|
||||
{
|
||||
uint16_t lastSeqNum; /*! Last received glucose measurement sequence number */
|
||||
} glpcCb;
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Parse a glucose measurement.
|
||||
*
|
||||
* \param pValue Pointer to buffer containing value.
|
||||
* \param len length of buffer.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void glpcGlsParseGlm(uint8_t *pValue, uint16_t len)
|
||||
{
|
||||
uint8_t flags;
|
||||
uint16_t seqNum;
|
||||
uint16_t year;
|
||||
uint8_t month, day, hour, min, sec;
|
||||
int16_t timeOffset;
|
||||
uint16_t glucose;
|
||||
int16_t mantissa;
|
||||
int8_t exponent;
|
||||
uint8_t typeLoc;
|
||||
uint16_t sensorStatus;
|
||||
uint16_t minLen = CH_GLM_FLAGS_LEN + CH_GLM_SEQNUM_LEN + CH_GLM_TIMESTAMP_LEN;
|
||||
|
||||
/* Suppress unused variable compile warning */
|
||||
(void)year; (void)month; (void)day; (void)hour; (void)min; (void)sec;
|
||||
(void)sensorStatus; (void)typeLoc; (void)exponent; (void)mantissa; (void)timeOffset;
|
||||
|
||||
if (len > 0)
|
||||
{
|
||||
/* get flags */
|
||||
BSTREAM_TO_UINT8(flags, pValue);
|
||||
|
||||
/* determine expected minimum length based on flags */
|
||||
if (flags & CH_GLM_FLAG_TIME_OFFSET)
|
||||
{
|
||||
minLen += CH_GLM_TIME_OFFSET_LEN;
|
||||
}
|
||||
if (flags & CH_GLM_FLAG_CONC_TYPE_LOC)
|
||||
{
|
||||
minLen += CH_GLM_CONC_TYPE_LOC_LEN;
|
||||
}
|
||||
if (flags & CH_GLM_FLAG_SENSOR_STATUS)
|
||||
{
|
||||
minLen += CH_GLM_SENSOR_STATUS_LEN;
|
||||
}
|
||||
}
|
||||
|
||||
/* verify length */
|
||||
if (len < minLen)
|
||||
{
|
||||
APP_TRACE_INFO2("Glucose meas len:%d minLen:%d", len, minLen);
|
||||
return;
|
||||
}
|
||||
|
||||
/* sequence number */
|
||||
BSTREAM_TO_UINT16(seqNum, pValue);
|
||||
glpcCb.lastSeqNum = seqNum;
|
||||
|
||||
/* base time */
|
||||
BSTREAM_TO_UINT16(year, pValue);
|
||||
BSTREAM_TO_UINT8(month, pValue);
|
||||
BSTREAM_TO_UINT8(day, pValue);
|
||||
BSTREAM_TO_UINT8(hour, pValue);
|
||||
BSTREAM_TO_UINT8(min, pValue);
|
||||
BSTREAM_TO_UINT8(sec, pValue);
|
||||
APP_TRACE_INFO3(" Date: %d/%d/%d", month, day, year);
|
||||
APP_TRACE_INFO3(" Time: %02d:%02d:%02d", hour, min, sec);
|
||||
|
||||
/* time offset */
|
||||
if (flags & CH_GLM_FLAG_TIME_OFFSET)
|
||||
{
|
||||
BSTREAM_TO_UINT16(timeOffset, pValue);
|
||||
APP_TRACE_INFO1(" Time offset: %d", timeOffset);
|
||||
}
|
||||
|
||||
/* glucose concentration, type, and location */
|
||||
if (flags & CH_GLM_FLAG_CONC_TYPE_LOC)
|
||||
{
|
||||
BSTREAM_TO_UINT16(glucose, pValue);
|
||||
UINT16_TO_SFLT(mantissa, exponent, glucose);
|
||||
APP_TRACE_INFO2(" Glucose concentration: %de%d", mantissa, exponent);
|
||||
BSTREAM_TO_UINT8(typeLoc, pValue);
|
||||
APP_TRACE_INFO2(" Type: %d Location: %d", (typeLoc & 0x0F), (typeLoc >> 4));
|
||||
}
|
||||
|
||||
/* sensor status */
|
||||
if (flags & CH_GLM_FLAG_SENSOR_STATUS)
|
||||
{
|
||||
BSTREAM_TO_UINT16(sensorStatus, pValue);
|
||||
APP_TRACE_INFO1(" Sensor status: 0x%04x", sensorStatus);
|
||||
}
|
||||
|
||||
APP_TRACE_INFO2(" Flags: 0x%02x Sequence Number: %d", flags, seqNum);
|
||||
}
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Parse a glucose measurement context.
|
||||
*
|
||||
* \param pValue Pointer to buffer containing value.
|
||||
* \param len length of buffer.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void glpcGlsParseGlmc(uint8_t *pValue, uint16_t len)
|
||||
{
|
||||
uint8_t flags;
|
||||
uint16_t seqNum;
|
||||
uint8_t extFlags;
|
||||
uint8_t carbId;
|
||||
uint16_t carb;
|
||||
uint8_t meal;
|
||||
uint8_t testerHealth;
|
||||
uint16_t exerDuration;
|
||||
uint8_t exerIntensity;
|
||||
uint8_t medicationId;
|
||||
uint16_t medication;
|
||||
uint16_t hba1c;
|
||||
int16_t mantissa;
|
||||
int8_t exponent;
|
||||
uint16_t minLen = CH_GLMC_FLAGS_LEN + CH_GLMC_SEQNUM_LEN;
|
||||
|
||||
/* Suppress unused variable compile warning */
|
||||
(void)seqNum; (void)extFlags; (void)carbId; (void)meal; (void)testerHealth;
|
||||
(void)medicationId; (void)exerIntensity; (void)exerDuration;
|
||||
(void)exponent; (void)mantissa;
|
||||
|
||||
if (len > 0)
|
||||
{
|
||||
/* get flags */
|
||||
BSTREAM_TO_UINT8(flags, pValue);
|
||||
|
||||
/* determine expected minimum length based on flags */
|
||||
if (flags & CH_GLMC_FLAG_CARB)
|
||||
{
|
||||
minLen += CH_GLMC_CARB_LEN;
|
||||
}
|
||||
if (flags & CH_GLMC_FLAG_MEAL)
|
||||
{
|
||||
minLen += CH_GLMC_MEAL_LEN;
|
||||
}
|
||||
if (flags & CH_GLMC_FLAG_TESTER)
|
||||
{
|
||||
minLen += CH_GLMC_TESTER_LEN;
|
||||
}
|
||||
if (flags & CH_GLMC_FLAG_EXERCISE)
|
||||
{
|
||||
minLen += CH_GLMC_EXERCISE_LEN;
|
||||
}
|
||||
if (flags & CH_GLMC_FLAG_MED)
|
||||
{
|
||||
minLen += CH_GLMC_MED_LEN;
|
||||
}
|
||||
if (flags & CH_GLMC_FLAG_HBA1C)
|
||||
{
|
||||
minLen += CH_GLMC_HBA1C_LEN;
|
||||
}
|
||||
if (flags & CH_GLMC_FLAG_EXT)
|
||||
{
|
||||
minLen += CH_GLMC_EXT_LEN;
|
||||
}
|
||||
}
|
||||
|
||||
/* verify length */
|
||||
if (len < minLen)
|
||||
{
|
||||
APP_TRACE_INFO2("Glucose meas context len:%d minLen:%d", len, minLen);
|
||||
return;
|
||||
}
|
||||
|
||||
/* sequence number */
|
||||
BSTREAM_TO_UINT16(seqNum, pValue);
|
||||
|
||||
/* extended flags */
|
||||
if (flags & CH_GLMC_FLAG_EXT)
|
||||
{
|
||||
BSTREAM_TO_UINT8(extFlags, pValue);
|
||||
APP_TRACE_INFO1(" Extended Flags: 0x%02x", extFlags);
|
||||
}
|
||||
|
||||
/* carbohydrate id and carbohydrate */
|
||||
if (flags & CH_GLMC_FLAG_CARB)
|
||||
{
|
||||
BSTREAM_TO_UINT8(carbId, pValue);
|
||||
BSTREAM_TO_UINT16(carb, pValue);
|
||||
UINT16_TO_SFLT(mantissa, exponent, carb);
|
||||
APP_TRACE_INFO3(" Carb Id: %d Carb-kg: %de%d", carbId, mantissa, exponent);
|
||||
}
|
||||
|
||||
/* meal */
|
||||
if (flags & CH_GLMC_FLAG_MEAL)
|
||||
{
|
||||
BSTREAM_TO_UINT8(meal, pValue);
|
||||
APP_TRACE_INFO1(" Meal: %d", meal);
|
||||
}
|
||||
|
||||
/* tester-health */
|
||||
if (flags & CH_GLMC_FLAG_TESTER)
|
||||
{
|
||||
BSTREAM_TO_UINT8(testerHealth, pValue);
|
||||
APP_TRACE_INFO2(" Tester: %d Health: %d", (testerHealth & 0x0F), (testerHealth >> 4));
|
||||
}
|
||||
|
||||
/* exercise duration and exercise intensity */
|
||||
if (flags & CH_GLMC_FLAG_EXERCISE)
|
||||
{
|
||||
BSTREAM_TO_UINT16(exerDuration, pValue);
|
||||
BSTREAM_TO_UINT8(exerIntensity, pValue);
|
||||
APP_TRACE_INFO2(" Exercise Duration: %d Intensity: %d", exerDuration, exerIntensity);
|
||||
}
|
||||
|
||||
/* medication ID and medication */
|
||||
if (flags & CH_GLMC_FLAG_MED)
|
||||
{
|
||||
BSTREAM_TO_UINT8(medicationId, pValue);
|
||||
BSTREAM_TO_UINT16(medication, pValue);
|
||||
UINT16_TO_SFLT(mantissa, exponent, medication);
|
||||
APP_TRACE_INFO3(" Medication ID: %d Units: %de%d", medicationId, mantissa, exponent);
|
||||
}
|
||||
|
||||
/* hba1c */
|
||||
if (flags & CH_GLMC_FLAG_HBA1C)
|
||||
{
|
||||
BSTREAM_TO_UINT16(hba1c, pValue);
|
||||
UINT16_TO_SFLT(mantissa, exponent, hba1c);
|
||||
APP_TRACE_INFO2(" HbA1c: %de%d", mantissa, exponent);
|
||||
}
|
||||
|
||||
APP_TRACE_INFO2(" Flags: 0x%02x Sequence Number: %d", flags, seqNum);
|
||||
}
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Process a message received from the sensor on the record access control point.
|
||||
*
|
||||
* \param pValue Pointer to buffer containing value.
|
||||
* \param len length of buffer.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void glpcGlsProcRacp(uint8_t *pValue, uint16_t len)
|
||||
{
|
||||
uint8_t opcode;
|
||||
uint16_t numRecords;
|
||||
uint16_t reqOpcode;
|
||||
uint16_t status;
|
||||
|
||||
/* Suppress unused variable compile warning */
|
||||
(void)status; (void)reqOpcode; (void)numRecords;
|
||||
|
||||
/* verify length */
|
||||
if (len != GLPC_GLS_RACP_RSP_LEN)
|
||||
{
|
||||
APP_TRACE_INFO1("Unexpected RACP message length: %d", len);
|
||||
return;
|
||||
}
|
||||
|
||||
/* parse message */
|
||||
BSTREAM_TO_UINT8(opcode, pValue);
|
||||
pValue++;
|
||||
if (opcode == CH_RACP_OPCODE_NUM_RSP)
|
||||
{
|
||||
BSTREAM_TO_UINT16(numRecords, pValue);
|
||||
APP_TRACE_INFO1("Number of records: %d", numRecords);
|
||||
}
|
||||
else if (opcode == CH_RACP_OPCODE_RSP)
|
||||
{
|
||||
BSTREAM_TO_UINT8(reqOpcode, pValue);
|
||||
BSTREAM_TO_UINT8(status, pValue);
|
||||
APP_TRACE_INFO2("Response opcode: %d status: %d", reqOpcode, status);
|
||||
}
|
||||
}
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Perform service and characteristic discovery for Glucose service. Parameter
|
||||
* pHdlList must point to an array of length GLPC_GLS_HDL_LIST_LEN. If discovery is
|
||||
* successful the handles of discovered characteristics and descriptors will be set
|
||||
* in pHdlList.
|
||||
*
|
||||
* \param connId Connection identifier.
|
||||
* \param pHdlList Characteristic handle list.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void GlpcGlsDiscover(dmConnId_t connId, uint16_t *pHdlList)
|
||||
{
|
||||
AppDiscFindService(connId, ATT_16_UUID_LEN, (uint8_t *) attGlsSvcUuid,
|
||||
GLPC_GLS_HDL_LIST_LEN, (attcDiscChar_t **) glpcGlsDiscCharList, pHdlList);
|
||||
}
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Process a value received in an ATT read response, notification, or indication
|
||||
* message. Parameter pHdlList must point to an array of length GLPC_GLS_HDL_LIST_LEN.
|
||||
* If the attribute handle of the message matches a handle in the handle list the value
|
||||
* is processed, otherwise it is ignored.
|
||||
*
|
||||
* \param pHdlList Characteristic handle list.
|
||||
* \param pMsg ATT callback message.
|
||||
*
|
||||
* \return ATT_SUCCESS if handle is found, ATT_ERR_NOT_FOUND otherwise.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
uint8_t GlpcGlsValueUpdate(uint16_t *pHdlList, attEvt_t *pMsg)
|
||||
{
|
||||
uint16_t feature;
|
||||
uint8_t *p;
|
||||
uint8_t status = ATT_SUCCESS;
|
||||
|
||||
/* Suppress unused variable compile warning */
|
||||
(void)feature;
|
||||
|
||||
/* glucose measurement */
|
||||
if (pMsg->handle == pHdlList[GLPC_GLS_GLM_HDL_IDX])
|
||||
{
|
||||
APP_TRACE_INFO0("Glucose meas.");
|
||||
|
||||
/* parse value */
|
||||
glpcGlsParseGlm(pMsg->pValue, pMsg->valueLen);
|
||||
}
|
||||
/* glucose measurement context */
|
||||
else if (pMsg->handle == pHdlList[GLPC_GLS_GLMC_HDL_IDX])
|
||||
{
|
||||
APP_TRACE_INFO0("Glucose meas. context");
|
||||
|
||||
/* parse value */
|
||||
glpcGlsParseGlmc(pMsg->pValue, pMsg->valueLen);
|
||||
}
|
||||
/* record access control point */
|
||||
else if (pMsg->handle == pHdlList[GLPC_GLS_RACP_HDL_IDX])
|
||||
{
|
||||
glpcGlsProcRacp(pMsg->pValue, pMsg->valueLen);
|
||||
}
|
||||
/* glucose feature */
|
||||
else if (pMsg->handle == pHdlList[GLPC_GLS_GLF_HDL_IDX])
|
||||
{
|
||||
/* parse value */
|
||||
p = pMsg->pValue;
|
||||
BSTREAM_TO_UINT16(feature, p);
|
||||
|
||||
APP_TRACE_INFO1("Glucose feature:0x%04x", feature);
|
||||
}
|
||||
else
|
||||
{
|
||||
status = ATT_ERR_NOT_FOUND;
|
||||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Send a command to the glucose service record access control point.
|
||||
*
|
||||
* \param connId Connection identifier.
|
||||
* \param handle Attribute handle.
|
||||
* \param opcode Command opcode.
|
||||
* \param oper Command operator or 0 if no operator required.
|
||||
* \param pFilter Command filter parameters or NULL of no parameters required.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void GlpcGlsRacpSend(dmConnId_t connId, uint16_t handle, uint8_t opcode, uint8_t oper,
|
||||
glpcFilter_t *pFilter)
|
||||
{
|
||||
uint8_t buf[ATT_DEFAULT_PAYLOAD_LEN];
|
||||
uint8_t *p = buf;
|
||||
|
||||
if (handle != ATT_HANDLE_NONE)
|
||||
{
|
||||
/* build RACP command */
|
||||
UINT8_TO_BSTREAM(p, opcode);
|
||||
UINT8_TO_BSTREAM(p, oper);
|
||||
if (pFilter != NULL)
|
||||
{
|
||||
UINT8_TO_BSTREAM(p, pFilter->type);
|
||||
if (pFilter->type == CH_RACP_GLS_FILTER_SEQ)
|
||||
{
|
||||
UINT16_TO_BSTREAM(p, pFilter->param.seqNum);
|
||||
}
|
||||
}
|
||||
|
||||
AttcWriteReq(connId, handle, (uint16_t) (p - buf), buf);
|
||||
}
|
||||
}
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Set the last received glucose measurement sequence number.
|
||||
*
|
||||
* \param seqNum Glucose measurement sequence number.
|
||||
*
|
||||
* \return None.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
void GlpcGlsSetLastSeqNum(uint16_t seqNum)
|
||||
{
|
||||
glpcCb.lastSeqNum = seqNum;
|
||||
}
|
||||
|
||||
/*************************************************************************************************/
|
||||
/*!
|
||||
* \brief Get the last received glucose measurement sequence number.
|
||||
*
|
||||
* \return Last received glucose measurement sequence number.
|
||||
*/
|
||||
/*************************************************************************************************/
|
||||
uint16_t GlpcGlsGetLastSeqNum(void)
|
||||
{
|
||||
return glpcCb.lastSeqNum;
|
||||
}
|
||||
Reference in New Issue
Block a user