]> granicus.if.org Git - esp-idf/blob - components/bt/esp_ble_mesh/api/models/esp_ble_mesh_time_scene_model_api.c
Bluetooth component refactoring
[esp-idf] / components / bt / esp_ble_mesh / api / models / esp_ble_mesh_time_scene_model_api.c
1 // Copyright 2017-2018 Espressif Systems (Shanghai) PTE LTD
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include <stdint.h>
16
17 #include "btc/btc_task.h"
18 #include "btc/btc_manage.h"
19
20 #include "esp_bt_defs.h"
21 #include "esp_bt_main.h"
22
23 #include "btc_ble_mesh_time_scene_model.h"
24 #include "esp_ble_mesh_time_scene_model_api.h"
25
26 esp_err_t esp_ble_mesh_register_time_scene_client_callback(esp_ble_mesh_time_scene_client_cb_t callback)
27 {
28     ESP_BLUEDROID_STATUS_CHECK(ESP_BLUEDROID_STATUS_ENABLED);
29
30     return (btc_profile_cb_set(BTC_PID_TIME_SCENE_CLIENT, callback) == 0 ? ESP_OK : ESP_FAIL);
31 }
32
33 esp_err_t esp_ble_mesh_time_scene_client_get_state(esp_ble_mesh_client_common_param_t *params,
34         esp_ble_mesh_time_scene_client_get_state_t *get_state)
35 {
36     btc_ble_mesh_time_scene_client_args_t arg = {0};
37     btc_msg_t msg = {0};
38
39     if (!params || !params->model || !params->ctx.addr || !get_state) {
40         return ESP_ERR_INVALID_ARG;
41     }
42
43     ESP_BLUEDROID_STATUS_CHECK(ESP_BLUEDROID_STATUS_ENABLED);
44
45     msg.sig = BTC_SIG_API_CALL;
46     msg.pid = BTC_PID_TIME_SCENE_CLIENT;
47     msg.act = BTC_BLE_MESH_ACT_TIME_SCENE_CLIENT_GET_STATE;
48     arg.time_scene_client_get_state.params = params;
49     arg.time_scene_client_get_state.get_state = get_state;
50
51     return (btc_transfer_context(&msg, &arg, sizeof(btc_ble_mesh_time_scene_client_args_t), btc_ble_mesh_time_scene_client_arg_deep_copy)
52             == BT_STATUS_SUCCESS ? ESP_OK : ESP_FAIL);
53 }
54
55 esp_err_t esp_ble_mesh_time_scene_client_set_state(esp_ble_mesh_client_common_param_t *params,
56         esp_ble_mesh_time_scene_client_set_state_t *set_state)
57 {
58     btc_ble_mesh_time_scene_client_args_t arg = {0};
59     btc_msg_t msg = {0};
60
61     if (!params || !params->model || !params->ctx.addr || !set_state) {
62         return ESP_ERR_INVALID_ARG;
63     }
64
65     ESP_BLUEDROID_STATUS_CHECK(ESP_BLUEDROID_STATUS_ENABLED);
66
67     msg.sig = BTC_SIG_API_CALL;
68     msg.pid = BTC_PID_TIME_SCENE_CLIENT;
69     msg.act = BTC_BLE_MESH_ACT_TIME_SCENE_CLIENT_SET_STATE;
70     arg.time_scene_client_set_state.params = params;
71     arg.time_scene_client_set_state.set_state = set_state;
72
73     return (btc_transfer_context(&msg, &arg, sizeof(btc_ble_mesh_time_scene_client_args_t), btc_ble_mesh_time_scene_client_arg_deep_copy)
74             == BT_STATUS_SUCCESS ? ESP_OK : ESP_FAIL);
75 }
76