/**************************************************************************** * apps/lte/lapi/src/lapi_radio.c * * SPDX-License-Identifier: Apache-2.0 * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include #include #include #include "lte/lte_api.h" #include "lte/lapi.h" /**************************************************************************** * Pre-processor Definitions ****************************************************************************/ /**************************************************************************** * Public Functions ****************************************************************************/ int lte_radio_on_sync(void) { int ret; int result; FAR void *outarg[] = { &result }; ret = lapi_req(LTE_CMDID_RADIOON, NULL, 0, (FAR void *)outarg, nitems(outarg), NULL); if (ret == 0) { ret = result; } return ret; } int lte_radio_off_sync(void) { int ret; int result; FAR void *outarg[] = { &result }; ret = lapi_req(LTE_CMDID_RADIOOFF, NULL, 0, (FAR void *)outarg, nitems(outarg), NULL); if (ret == 0) { ret = result; } return ret; } #ifdef CONFIG_LTE_LAPI_ENABLE_DEPRECATED_API int lte_radio_on(radio_on_cb_t callback) { if (callback == NULL) { return -EINVAL; } return lapi_req(LTE_CMDID_RADIOON | LTE_CMDOPT_ASYNC_BIT, NULL, 0, NULL, 0, callback); } int lte_radio_off(radio_off_cb_t callback) { if (callback == NULL) { return -EINVAL; } return lapi_req(LTE_CMDID_RADIOOFF | LTE_CMDOPT_ASYNC_BIT, NULL, 0, NULL, 0, callback); } #endif /* CONFIG_LTE_LAPI_ENABLE_DEPRECATED_API */