/**************************************************************************** * apps/wireless/ieee802154/i8sak/i8sak_regdump.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 #include #include #include #include #include #include #include #include #include "i8sak.h" #include #include "wireless/ieee802154.h" /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name : i8sak_regdump_cmd * * Description : * Print register information of radio device ****************************************************************************/ void i8sak_regdump_cmd(FAR struct i8sak_s *i8sak, int argc, FAR char *argv[]) { struct ieee802154_get_req_s req; int option; int fd = 0; while ((option = getopt(argc, argv, ":h")) != ERROR) { switch (option) { case 'h': fprintf(stderr, "Prints reg info of radio device\n" "Usage: %s [-h]\n" " -h = this help menu\n" , argv[0]); /* Must manually reset optind if we are going to exit early */ optind = -1; return; case ':': fprintf(stderr, "ERROR: missing argument\n"); /* Must manually reset optind if we are going to exit early */ optind = -1; i8sak_cmd_error(i8sak); /* This exits for us */ case '?': fprintf(stderr, "ERROR: unknown argument\n"); /* Must manually reset optind if we are going to exit early */ optind = -1; i8sak_cmd_error(i8sak); /* This exits for us */ } } req.attr = IEEE802154_ATTR_PHY_REGDUMP; if (i8sak->mode == I8SAK_MODE_CHAR) { fd = open(i8sak->ifname, O_RDWR); if (fd < 0) { fprintf(stderr, "ERROR: cannot open %s, errno=%d\n", i8sak->ifname, errno); i8sak_cmd_error(i8sak); } ieee802154_get_req(fd, &req); } #ifdef CONFIG_NET_6LOWPAN else if (i8sak->mode == I8SAK_MODE_NETIF) { fd = socket(PF_INET6, SOCK_DGRAM, 0); if (fd < 0) { fprintf(stderr, "ERROR: failed to open socket, errno=%d\n", errno); i8sak_cmd_error(i8sak); } sixlowpan_get_req(fd, i8sak->ifname, &req); } #endif close(fd); }