mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 20:59:05 +00:00
Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
111 lines
2.8 KiB
C
111 lines
2.8 KiB
C
/****************************************************************************
|
|
* 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 <nuttx/config.h>
|
|
|
|
#include <stdint.h>
|
|
#include <errno.h>
|
|
#include <sys/param.h>
|
|
#include <nuttx/wireless/lte/lte_ioctl.h>
|
|
|
|
#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 */
|
|
|