Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/tools/testing/selftests/gpio/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  gpio-chip-info.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * GPIO character device helper for reading chip information.
 *
 * Copyright (C) 2021 Bartosz Golaszewski <brgl@bgdev.pl>
 */


#include <fcntl.h>
#include <linux/gpio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>

static void print_usage(void)
{
 printf("usage:\n");
 printf(" gpio-chip-info [name|label|num-lines]\n");
}

int main(int argc, char **argv)
{
 struct gpiochip_info info;
 int fd, ret;

 if (argc != 3) {
  print_usage();
  return EXIT_FAILURE;
 }

 fd = open(argv[1], O_RDWR);
 if (fd < 0) {
  perror("unable to open the GPIO chip");
  return EXIT_FAILURE;
 }

 memset(&info, 0, sizeof(info));
 ret = ioctl(fd, GPIO_GET_CHIPINFO_IOCTL, &info);
 if (ret) {
  perror("chip info ioctl failed");
  return EXIT_FAILURE;
 }

 if (strcmp(argv[2], "name") == 0) {
  printf("%s\n", info.name);
 } else if (strcmp(argv[2], "label") == 0) {
  printf("%s\n", info.label);
 } else if (strcmp(argv[2], "num-lines") == 0) {
  printf("%u\n", info.lines);
 } else {
  fprintf(stderr, "unknown command: %s\n", argv[2]);
  return EXIT_FAILURE;
 }

 return EXIT_SUCCESS;
}

Messung V0.5
C=97 H=100 G=98

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.