Skip to content

Commit

Permalink
Fixing build warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-gillespie committed Oct 11, 2024
1 parent e4de02f commit 9c33220
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Libraries/Cordio/ble-profiles/sources/af/common/app_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ void AppDbNvmReadAll(void)
/* Read all records. */
for (i = 0; i < APP_DB_NUM_RECS; i++)
{
bool_t valid = FALSE;
uint8_t valid = 0;
appDbRec_t *pRec = &appDb.rec[i];

/* Verify record is valid. */
Expand Down
1 change: 0 additions & 1 deletion Libraries/Cordio/controller/sources/ble/lhci/lhci_cmd_vs.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ bool_t lhciCommonVsStdDecodeCmdPkt(LhciHdr_t *pHdr, uint8_t *pBuf)
{
uint8_t status = HCI_SUCCESS;
uint8_t evtParamLen = 1; /* default is status field only */
uint32_t regReadAddr = 0;
uint32_t channel = 0;

(void)channel;
Expand Down

0 comments on commit 9c33220

Please sign in to comment.