@@ -139,7 +139,7 @@ void HCIClass::poll(unsigned long timeout)
139
139
while (HCITransport.available ()) {
140
140
byte b = HCITransport.read ();
141
141
142
- if (_recvIndex >= sizeof (_recvBuffer)) {
142
+ if (_recvIndex >= ( int ) sizeof (_recvBuffer)) {
143
143
_recvIndex = 0 ;
144
144
if (_debug) {
145
145
_debug->println (" _recvBuffer overflow" );
@@ -462,6 +462,8 @@ int HCIClass::leConnUpdate(uint16_t handle, uint16_t minInterval, uint16_t maxIn
462
462
return sendCommand (OGF_LE_CTL << 10 | OCF_LE_CONN_UPDATE, sizeof (leConnUpdateData), &leConnUpdateData);
463
463
}
464
464
void HCIClass::saveNewAddress (uint8_t addressType, uint8_t * address, uint8_t * peerIrk, uint8_t * localIrk){
465
+ (void )addressType;
466
+ (void )localIrk;
465
467
if (_storeIRK!=0 ){
466
468
_storeIRK (address, peerIrk);
467
469
}
@@ -504,6 +506,7 @@ int HCIClass::leStartResolvingAddresses(){
504
506
return HCI.sendCommand (OGF_LE_CTL << 10 | 0x2D , 1 ,&enable); // Disable address resolution
505
507
}
506
508
int HCIClass::leReadPeerResolvableAddress (uint8_t peerAddressType, uint8_t * peerIdentityAddress, uint8_t * peerResolvableAddress){
509
+ (void )peerResolvableAddress;
507
510
struct __attribute__ ((packed)) Request {
508
511
uint8_t addressType;
509
512
uint8_t identityAddress[6 ];
@@ -547,7 +550,7 @@ int HCIClass::readStoredLK(uint8_t BD_ADDR[], uint8_t read_all ){
547
550
struct __attribute__ ((packed)) Request {
548
551
uint8_t BD_ADDR[6 ];
549
552
uint8_t read_a;
550
- } request = {0 ,0 };
553
+ } request = {{ 0 } ,0 };
551
554
for (int i=0 ; i<6 ; i++) request.BD_ADDR [5 -i] = BD_ADDR[i];
552
555
request.read_a = read_all;
553
556
return sendCommand (OGF_HOST_CTL << 10 | 0xD , sizeof (request), &request);
@@ -1272,7 +1275,7 @@ void HCIClass::handleEventPkt(uint8_t /*plen*/, uint8_t pdata[])
1272
1275
uint8_t U[32 ];
1273
1276
uint8_t V[32 ];
1274
1277
uint8_t Z;
1275
- } f4Params = {0 , 0 ,Z};
1278
+ } f4Params = {{ 0 },{ 0 } ,Z};
1276
1279
for (int i=0 ; i<32 ; i++){
1277
1280
f4Params.U [31 -i] = pairingPublicKey.publicKey [i];
1278
1281
f4Params.V [31 -i] = HCI.remotePublicKeyBuffer [i];
@@ -1292,7 +1295,7 @@ void HCIClass::handleEventPkt(uint8_t /*plen*/, uint8_t pdata[])
1292
1295
#endif
1293
1296
1294
1297
uint8_t cb_temp[sizeof (pairingConfirm.cb )];
1295
- for (int i=0 ; i<sizeof (pairingConfirm.cb );i++){
1298
+ for (unsigned int i=0 ; i<sizeof (pairingConfirm.cb );i++){
1296
1299
cb_temp[sizeof (pairingConfirm.cb )-1 -i] = pairingConfirm.cb [i];
1297
1300
}
1298
1301
// / cb wa back to front.
@@ -1376,11 +1379,12 @@ void HCIClass::handleEventPkt(uint8_t /*plen*/, uint8_t pdata[])
1376
1379
}
1377
1380
}
1378
1381
int HCIClass::leEncrypt (uint8_t * key, uint8_t * plaintext, uint8_t * status, uint8_t * ciphertext){
1382
+ (void )status;
1379
1383
struct __attribute__ ((packed)) LeEncryptCommand
1380
1384
{
1381
1385
uint8_t key[16 ];
1382
1386
uint8_t plaintext[16 ];
1383
- } leEncryptCommand = {0 , 0 };
1387
+ } leEncryptCommand = {{ 0 },{ 0 } };
1384
1388
for (int i=0 ; i<16 ; i++){
1385
1389
leEncryptCommand.key [15 -i] = key[i];
1386
1390
leEncryptCommand.plaintext [15 -i] = plaintext[i];
0 commit comments