123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- #include "bcomdef.h"
- #include <stdio.h>
- #include <string.h>
- #include "OSAL.h"
- #include "linkdb.h"
- #include "att.h"
- #include "gatt.h"
- #include "gatt_uuid.h"
- #include "gatt_profile_uuid.h"
- #include "peripheral.h"
- #include "gattservapp.h"
- #include "ota_app_service.h"
- #include "log.h"
- #include "error.h"
- CONST uint8 ota_ServiceUUID[ATT_UUID_SIZE] =
- { 0x23, 0xf1, 0x6e, 0x53, 0xa4, 0x22, 0x42, 0x61, 0x91, 0x51, 0x8b, 0x9b, 0x01, 0xff, 0x33, 0x58};
- CONST uint8 ota_CommandUUID[ATT_UUID_SIZE] =
- { 0x23, 0xf1, 0x6e, 0x53, 0xa4, 0x22, 0x42, 0x61, 0x91, 0x51, 0x8b, 0x9b, 0x02, 0xff, 0x33, 0x58};
- CONST uint8 ota_ResponseUUID[ATT_UUID_SIZE] =
- { 0x23, 0xf1, 0x6e, 0x53, 0xa4, 0x22, 0x42, 0x61, 0x91, 0x51, 0x8b, 0x9b, 0x03, 0xff, 0x33, 0x58};
- static CONST gattAttrType_t ota_Service = { ATT_UUID_SIZE, ota_ServiceUUID };
- static uint8 ota_CommandProps = GATT_PROP_WRITE;
- static uint8 ota_CommandValue = 0;
- static uint8 ota_ResponseProps = GATT_PROP_NOTIFY;
- static uint8 ota_ResponseValue = 0;
- static gattCharCfg_t ota_ResponseCCCD[GATT_MAX_NUM_CONN];
- #define OTA_COMMAND_HANDLE 2
- #define OTA_RSP_HANDLE 4
- #define OTA_DATA_HANDLE 7
- static gattAttribute_t ota_AttrTbl[] =
- {
-
- {
- { ATT_BT_UUID_SIZE, primaryServiceUUID },
- GATT_PERMIT_READ,
- 0,
- (uint8 *)&ota_Service
- },
-
- {
- { ATT_BT_UUID_SIZE, characterUUID },
- GATT_PERMIT_READ,
- 0,
- &ota_CommandProps
- },
-
-
- {
- { ATT_UUID_SIZE, ota_CommandUUID },
- GATT_PERMIT_WRITE,
- 0,
- &ota_CommandValue
- },
-
-
- {
- { ATT_BT_UUID_SIZE, characterUUID },
- GATT_PERMIT_READ,
- 0,
- &ota_ResponseProps
- },
-
- {
- { ATT_UUID_SIZE, ota_ResponseUUID },
- GATT_PERMIT_READ,
- 0,
- &ota_ResponseValue
- },
-
-
- {
- { ATT_BT_UUID_SIZE, clientCharCfgUUID },
- GATT_PERMIT_READ | GATT_PERMIT_WRITE,
- 0,
- (uint8 *) ota_ResponseCCCD
- },
- };
- typedef struct {
- bool notify_en;
- uint8_t ver_major;
- uint8_t ver_minor;
- uint8_t ver_revision;
- uint8_t ver_test_build;
- uint8_t ota_mode;
- uint8_t bank_info;
- }ota_app_ctx;
- ota_app_ctx s_ota_app;
- bool s_reboot_flg = false;
- static uint8 ota_ReadAttrCB( uint16 connHandle, gattAttribute_t *pAttr,
- uint8 *pValue, uint8 *pLen, uint16 offset, uint8 maxLen );
- static bStatus_t ota_WriteAttrCB( uint16 connHandle, gattAttribute_t *pAttr,
- uint8 *pValue, uint8 len, uint16 offset );
- static bStatus_t sendNotify(attHandleValueNoti_t *pNoti);
- CONST gattServiceCBs_t ota_ProfileCBs =
- {
- ota_ReadAttrCB,
- ota_WriteAttrCB,
- NULL
- };
- static void response(uint8_t* rsp_data, uint8_t size)
- {
- attHandleValueNoti_t notif;
-
- osal_memset(¬if, 0, sizeof(notif));
- if(size > 20)
- return;
-
- notif.len = size;
- osal_memcpy(notif.value, rsp_data, size);
- sendNotify(¬if);
- }
- static int set_ota_mode(uint8_t mode)
- {
- if(mode > OTA_MODE_RESOURCE && mode != OTA_MODE_OTA_NADDR)
- return PPlus_ERR_INVALID_PARAM;
- write_reg(OTA_MODE_SELECT_REG, mode);
- return PPlus_SUCCESS;
- }
- static void load_ota_version(void)
- {
- uint32_t reg = read_reg(OTA_MODE_SELECT_REG);
- s_ota_app.ver_major = (uint8_t)((reg >>4) & 0xf);
- s_ota_app.ver_minor = (uint8_t)((reg >>8) & 0xf);
- s_ota_app.ver_revision = (uint8_t)((reg >>12) & 0xff);
- s_ota_app.ver_test_build = (uint8_t)((reg >>20) & 0xf);
- if(s_ota_app.ver_test_build)
- LOG("OTA Boot Version: %d.%d.%d%c\n",
- s_ota_app.ver_major,s_ota_app.ver_minor,s_ota_app.ver_revision, s_ota_app.ver_test_build+'a'-1);
- else
- LOG("OTA Boot Version: %d.%d.%d\n",
- s_ota_app.ver_major,s_ota_app.ver_minor,s_ota_app.ver_revision);
- }
- void __attribute__((weak)) ui_firmware_upgrade(void);
- static void process_cmd(uint8_t* cmdbuf, uint8_t size){
- uint8_t rsp = PPlus_SUCCESS;
- switch(cmdbuf[0]){
- case OTAAPP_CMD_START_OTA:
- {
- uint8_t ota_mode = cmdbuf[1];
- s_reboot_flg = false;
-
- rsp = set_ota_mode(ota_mode);
- if(rsp == PPlus_SUCCESS){
-
- if(size != 3){
- NVIC_SystemReset();
- }
- if(cmdbuf[2] != 1){
- NVIC_SystemReset();
- }
-
-
-
- response(&rsp, 1);
- s_reboot_flg = true;
- }
- else
- {
- response(&rsp, 1);
- }
- }
- break;
- case OTAAPP_CMD_FORMAT:
- {
- rsp = PPlus_ERR_NOT_SUPPORTED;
-
-
- response(&rsp, 1);
- }
- break;
- case OTAAPP_CMD_INFO:
- {
-
- uint8_t info_rsp[20];
- osal_memset(info_rsp, 0, 20);
- info_rsp[0] = PPlus_SUCCESS;
- GAPRole_GetParameter(GAPROLE_BD_ADDR, info_rsp+1);
- if(s_ota_app.ver_test_build){
- sprintf((char*)(info_rsp+7), "V%d.%d.%d%c",
- s_ota_app.ver_major,
- s_ota_app.ver_minor,
- s_ota_app.ver_revision,
- 'a'+s_ota_app.ver_test_build-1);
- }
- else
- {
- sprintf((char*)(info_rsp+7), "V%d.%d.%d",s_ota_app.ver_major,s_ota_app.ver_minor,s_ota_app.ver_revision);
- }
- response(info_rsp, 8+strlen((const char*)info_rsp+7));
- }
- break;
- default:
- rsp = PPlus_ERR_OTA_UNKNOW_CMD;
- response(&rsp, 1);
- }
- }
- static void handleConnStatusCB( uint16 connHandle, uint8 changeType )
- {
-
- LOG("handleConnStatusCB %x, %d\n", connHandle,changeType );
- if ( connHandle != LOOPBACK_CONNHANDLE )
- {
-
- if ( ( changeType == LINKDB_STATUS_UPDATE_REMOVED ) ||
- ( ( changeType == LINKDB_STATUS_UPDATE_STATEFLAGS ) &&
- ( !linkDB_Up( connHandle ) ) ) )
- {
- GATTServApp_InitCharCfg( connHandle, ota_ResponseCCCD);
- if(s_reboot_flg){
- NVIC_SystemReset();
- }
- }
- else
- {
- s_reboot_flg = false;
- }
- }
- }
- static bStatus_t sendNotify(attHandleValueNoti_t *pNoti)
- {
- uint16 connHandle;
- uint16 value;
- GAPRole_GetParameter(GAPROLE_CONNHANDLE, &connHandle);
- value = GATTServApp_ReadCharCfg( connHandle, ota_ResponseCCCD);
- if(connHandle == INVALID_CONNHANDLE)
- return bleIncorrectMode;
-
-
- if ( value & GATT_CLIENT_CFG_NOTIFY )
- {
-
- pNoti->handle = ota_AttrTbl[OTA_RSP_HANDLE].handle;
-
-
- return GATT_Notification( connHandle, pNoti, FALSE);
-
- }
- return bleIncorrectMode;
-
- }
- static uint8 ota_ReadAttrCB( uint16 connHandle, gattAttribute_t *pAttr,
- uint8 *pValue, uint8 *pLen, uint16 offset, uint8 maxLen )
- {
- bStatus_t status = ATT_ERR_READ_NOT_PERMITTED;
- LOG("ReadAttrCB\n");
-
- if ( gattPermitAuthorRead( pAttr->permissions ) )
- {
-
- return ( ATT_ERR_INSUFFICIENT_AUTHOR );
- }
- return ( status );
- }
- static bStatus_t ota_WriteAttrCB( uint16 connHandle, gattAttribute_t *pAttr,
- uint8 *pValue, uint8 len, uint16 offset )
- {
- bStatus_t status = SUCCESS;
-
-
- if ( gattPermitAuthorWrite( pAttr->permissions ) )
- {
-
- return ( ATT_ERR_INSUFFICIENT_AUTHOR );
- }
- if ( pAttr->type.len == ATT_BT_UUID_SIZE )
- {
-
- uint16 uuid = BUILD_UINT16( pAttr->type.uuid[0], pAttr->type.uuid[1]);
- if(uuid == GATT_CLIENT_CHAR_CFG_UUID)
- {
- status = GATTServApp_ProcessCCCWriteReq( connHandle, pAttr, pValue, len,
- offset, GATT_CLIENT_CFG_NOTIFY );
- if ( status == SUCCESS)
- {
- uint16 charCfg = BUILD_UINT16( pValue[0], pValue[1] );
-
- LOG("CCCD set: [%d]\n", charCfg);
- s_ota_app.notify_en = (charCfg == 1);
- }
- }
- }
- else
- {
- LOG("WR:%d\n", pAttr->handle);
-
- if(pAttr->handle == ota_AttrTbl[OTA_COMMAND_HANDLE].handle)
- {
- process_cmd(pValue, len);
- }
- }
- return ( status );
- }
- bStatus_t ota_app_AddService(void)
- {
- uint8 status = SUCCESS;
-
- VOID linkDB_Register( handleConnStatusCB );
-
- load_ota_version();
-
- GATTServApp_InitCharCfg( INVALID_CONNHANDLE, ota_ResponseCCCD );
-
-
- status = GATTServApp_RegisterService( ota_AttrTbl,
- GATT_NUM_ATTRS( ota_AttrTbl ),
- &ota_ProfileCBs );
-
-
- if(status!=SUCCESS)
- LOG("Add OTA service failed!\n");
-
-
- return ( status );
- }
- int ota_vendor_module_StartOTA(uint8_t mode)
- {
- int ret = 0;
- uint32_t reg = read_reg(OTA_MODE_SELECT_REG);
- if(reg == 0)
- return PPlus_ERR_NOT_REGISTED;
- ret = set_ota_mode(mode);
- if(ret == PPlus_SUCCESS){
- NVIC_SystemReset();
- }
- return ret;
- }
- int ota_vendor_module_Version( uint8_t* major, uint8_t* minor, uint8_t* revision, uint8_t *test_build)
- {
- uint32_t reg = read_reg(OTA_MODE_SELECT_REG);
-
- if(reg == 0)
- return PPlus_ERR_NOT_REGISTED;
-
- *major = (uint8_t)((reg >>4) & 0xf);
- *minor = (uint8_t)((reg >>8) & 0xf);
- *revision = (uint8_t)((reg >>12) & 0xff);
- *test_build = (uint8_t)((reg >>20) & 0xf);
- return PPlus_SUCCESS;
- }
|