diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-02-04 17:34:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-04 17:34:28 +0100 |
| commit | 6259b816287f8f74dadf50334a445cd9fe16d415 (patch) | |
| tree | 712cf7ca15f0d17b54909bbf45a4cc759c579392 /src/libs/mynewt-nimble/apps/blemesh_shell | |
| parent | 16ce5bbb7563f0af9394d4da0dae303aa9eda2fd (diff) | |
| parent | d90b7274fa8bbfa09f79660b45b550d91f7b0125 (diff) | |
Merge pull request #198 from JF002/update-nimble-1_3-master
Update to nimble 1.3 master branch
Diffstat (limited to 'src/libs/mynewt-nimble/apps/blemesh_shell')
| -rw-r--r-- | src/libs/mynewt-nimble/apps/blemesh_shell/src/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/mynewt-nimble/apps/blemesh_shell/src/main.c b/src/libs/mynewt-nimble/apps/blemesh_shell/src/main.c index 4ad23e1d..fcf80127 100644 --- a/src/libs/mynewt-nimble/apps/blemesh_shell/src/main.c +++ b/src/libs/mynewt-nimble/apps/blemesh_shell/src/main.c @@ -44,21 +44,21 @@ void net_recv_ev(uint8_t ttl, uint8_t ctl, uint16_t src, uint16_t dst, payload_len); } -static void model_bound_cb(u16_t addr, struct bt_mesh_model *model, - u16_t key_idx) +static void model_bound_cb(uint16_t addr, struct bt_mesh_model *model, + uint16_t key_idx) { console_printf("Model bound: remote addr 0x%04x key_idx 0x%04x model %p\n", addr, key_idx, model); } -static void model_unbound_cb(u16_t addr, struct bt_mesh_model *model, - u16_t key_idx) +static void model_unbound_cb(uint16_t addr, struct bt_mesh_model *model, + uint16_t key_idx) { console_printf("Model unbound: remote addr 0x%04x key_idx 0x%04x " "model %p\n", addr, key_idx, model); } -static void invalid_bearer_cb(u8_t opcode) +static void invalid_bearer_cb(uint8_t opcode) { console_printf("Invalid bearer: opcode 0x%02x\n", opcode); } |
