if ( GATT_Notification( 0, pRepor, FALSE )==SUCCESS)
{
//用户可在这里进行发送成功后的相关操作,pRepor为待发送的Notification
}
/**
* Handle Value Notification format.
*/
typedef struct
{
uint16 handle; //!< Handle of the attribute that has been changed (must be first field)
uint8 len; //!< Length of value
uint8 value[ATT_MTU_SIZE-3]; //!< New value of the attribute
} attHandleValueNoti_t;