drivers/nble: Update RPC to the Nordic BLE chip

Update RPC headers to sync with NBLE firmware.

Change-Id: I3231fe16372f2a6a38868edfa543689f631d8b98
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
Andrei Emeltchenko 2016-02-04 14:35:55 +02:00 committed by Anas Nashif
commit 99a4cac6a9
4 changed files with 6 additions and 11 deletions

View file

@ -449,8 +449,8 @@ void on_ble_gatts_write_evt(const struct ble_gatt_wr_evt *evt,
reply_data.offset = evt->offset;
reply_data.write_reply = 1;
nble_gatts_rw_authorize_reply_req(&reply_data, NULL,
reply_data.status);
nble_gatts_authorize_reply_req(&reply_data, NULL,
reply_data.status);
}
}
@ -503,5 +503,5 @@ void on_ble_gatts_read_evt(const struct nble_gatt_rd_evt *evt)
reply_data.offset = evt->offset;
reply_data.write_reply = 0;
nble_gatts_rw_authorize_reply_req(&reply_data, data, reply_data.status);
nble_gatts_authorize_reply_req(&reply_data, data, reply_data.status);
}