087b4da88f
Fixes for nxstyle errors reported by the tool. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
168 lines
4.8 KiB
C
168 lines
4.8 KiB
C
/****************************************************************************
|
|
* apps/wireless/ieee802154/libmac/sixlowpan_setreq.c
|
|
*
|
|
* 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 <sys/ioctl.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <nuttx/fs/ioctl.h>
|
|
|
|
#include <nuttx/wireless/ieee802154/ieee802154_mac.h>
|
|
#include "wireless/ieee802154.h"
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
int sixlowpan_set_req(int sock, FAR const char *ifname,
|
|
FAR const struct ieee802154_set_req_s *req)
|
|
{
|
|
struct ieee802154_netmac_s arg;
|
|
int ret;
|
|
|
|
strncpy(arg.ifr_name, ifname, IFNAMSIZ);
|
|
memcpy(&arg.u.setreq, req, sizeof(struct ieee802154_set_req_s));
|
|
|
|
ret = ioctl(sock, MAC802154IOC_MLME_SET_REQUEST,
|
|
(unsigned long)((uintptr_t)&arg));
|
|
if (ret < 0)
|
|
{
|
|
ret = -errno;
|
|
fprintf(stderr, "MAC802154IOC_MLME_SET_REQUEST failed: %d\n", ret);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* Wrappers around set_req to make it even easier to set common attributes */
|
|
|
|
int sixlowpan_setchan(int sock, FAR const char *ifname, uint8_t chan)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_PHY_CHAN;
|
|
req.attrval.phy.chan = chan;
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_seteaddr(int sock,
|
|
FAR const char *ifname, FAR const uint8_t *eaddr)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_MAC_EADDR;
|
|
IEEE802154_EADDRCOPY(req.attrval.mac.eaddr, eaddr);
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_setsaddr(int sock,
|
|
FAR const char *ifname, FAR const uint8_t *saddr)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_MAC_SADDR;
|
|
IEEE802154_SADDRCOPY(req.attrval.mac.saddr, saddr);
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_setpanid(int sock,
|
|
FAR const char *ifname, FAR const uint8_t *panid)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_MAC_PANID;
|
|
IEEE802154_PANIDCOPY(req.attrval.mac.panid, panid);
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_setrxonidle(int sock, FAR const char *ifname, bool rxonidle)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_MAC_RX_ON_WHEN_IDLE;
|
|
req.attrval.mac.rxonidle = rxonidle;
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_setpromisc(int sock, FAR const char *ifname, bool promisc)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_MAC_PROMISCUOUS_MODE;
|
|
req.attrval.mac.promisc_mode = promisc;
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_setassocpermit(int sock,
|
|
FAR const char *ifname, bool assocpermit)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_MAC_ASSOCIATION_PERMIT;
|
|
req.attrval.mac.assocpermit = assocpermit;
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_settxpwr(int sock, FAR const char *ifname, int32_t txpwr)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_PHY_TX_POWER;
|
|
req.attrval.phy.txpwr = txpwr;
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_setmaxretries(int sock,
|
|
FAR const char *ifname, uint8_t retries)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_MAC_MAX_FRAME_RETRIES;
|
|
req.attrval.mac.max_retries = retries;
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|
|
|
|
int sixlowpan_setfcslen(int sock, FAR const char *ifname, uint8_t fcslen)
|
|
{
|
|
struct ieee802154_set_req_s req;
|
|
|
|
req.attr = IEEE802154_ATTR_PHY_FCS_LEN;
|
|
req.attrval.phy.fcslen = fcslen;
|
|
|
|
return sixlowpan_set_req(sock, ifname, &req);
|
|
}
|