drivers/nble: Change RPC following firmware update
Due to firmware update of NBLE starting from 02/12 revisions onwards there is a need to sync RPC headers and functions. Only to be used with above mentioned NBLE firmware! Change-Id: Ifc2ce28f81e819bb517ef3891610d78089a00428 Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
parent
d650bc298e
commit
0270fe43a5
7 changed files with 501 additions and 484 deletions
|
@ -206,7 +206,7 @@ static void notify_disconnected(struct bt_conn *conn)
|
|||
}
|
||||
}
|
||||
|
||||
void on_ble_gap_connect_evt(const struct ble_gap_connect_evt *ev)
|
||||
void on_nble_gap_connect_evt(const struct nble_gap_connect_evt *ev)
|
||||
{
|
||||
struct bt_conn *conn;
|
||||
|
||||
|
@ -224,7 +224,7 @@ void on_ble_gap_connect_evt(const struct ble_gap_connect_evt *ev)
|
|||
notify_connected(conn);
|
||||
}
|
||||
|
||||
void on_ble_gap_disconnect_evt(const struct ble_gap_disconnect_evt *ev)
|
||||
void on_nble_gap_disconnect_evt(const struct nble_gap_disconnect_evt *ev)
|
||||
{
|
||||
struct bt_conn *conn;
|
||||
|
||||
|
@ -244,7 +244,7 @@ void on_ble_gap_disconnect_evt(const struct ble_gap_disconnect_evt *ev)
|
|||
bt_conn_unref(conn);
|
||||
}
|
||||
|
||||
void on_ble_gap_conn_update_evt(const struct ble_gap_conn_update_evt *ev)
|
||||
void on_nble_gap_conn_update_evt(const struct nble_gap_conn_update_evt *ev)
|
||||
{
|
||||
struct bt_conn *conn;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue