version 1.1.1.1, 2025/01/19 02:04:04
|
version 1.4, 2025/04/09 19:52:02
|
Line 1
|
Line 1
|
/* |
/* |
* * |
* $Id$ |
* * * |
|
* * * |
|
* *************** |
|
* * * * * |
|
* * MUMPS * |
|
* * * * * |
|
* *************** |
|
* * * |
|
* * * |
|
* * |
|
* |
|
* ssvn_zrpi.c |
|
* Support for Raspberry Pi single-board computers |
* Support for Raspberry Pi single-board computers |
* |
* |
* |
* |
* Author: Serena Willis <jpw@coherent-logic.com> |
* Author: Serena Willis <snw@coherent-logic.com> |
* Copyright (C) 1998 MUG Deutschland |
* Copyright (C) 1998 MUG Deutschland |
* Copyright (C) 2020 Coherent Logic Development LLC |
* Copyright (C) 2020, 2025 Coherent Logic Development LLC |
* |
* |
* |
* |
* This file is part of FreeM. |
* This file is part of FreeM. |
Line 35
|
Line 23
|
* You should have received a copy of the GNU Affero General Public License |
* You should have received a copy of the GNU Affero General Public License |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* |
* |
|
* $Log$ |
|
* Revision 1.4 2025/04/09 19:52:02 snw |
|
* Eliminate as many warnings as possible while building with -Wall |
|
* |
|
* Revision 1.3 2025/03/09 19:50:47 snw |
|
* Second phase of REUSE compliance and header reformat |
|
* |
|
* |
|
* SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC |
|
* SPDX-License-Identifier: AGPL-3.0-or-later |
**/ |
**/ |
|
|
#include <stdlib.h> |
#include <stdlib.h> |
Line 53 int rpi_pinmode[RPI_PINCOUNT];
|
Line 51 int rpi_pinmode[RPI_PINCOUNT];
|
|
|
void ssvn_zrpi_init (void) |
void ssvn_zrpi_init (void) |
{ |
{ |
|
|
|
#if defined(HAVE_WIRINGPI_H) |
register int i; |
register int i; |
|
|
#if defined(HAVE_WIRINGPI_H) |
|
|
|
wiringPiSetup (); |
wiringPiSetup (); |
|
|
for (i = 0; i < RPI_PINCOUNT; i++) { |
for (i = 0; i < RPI_PINCOUNT; i++) { |
Line 65 void ssvn_zrpi_init (void)
|
Line 63 void ssvn_zrpi_init (void)
|
} |
} |
|
|
#endif |
#endif |
|
return; |
} |
} |
|
|
void ssvn_zrpi (short action, char *key, char *data) |
void ssvn_zrpi (short action, char *key, char *data) |
{ |
{ |
int pin; |
|
|
|
freem_ref_t *ref = (freem_ref_t *) malloc (sizeof (freem_ref_t)); |
freem_ref_t *ref = (freem_ref_t *) malloc (sizeof (freem_ref_t)); |
char *kbuf = (char *) malloc (STRLEN * sizeof (char)); |
char *kbuf = (char *) malloc (STRLEN * sizeof (char)); |
char *verb = (char *) malloc (STRLEN * sizeof (char)); |
char *verb = (char *) malloc (STRLEN * sizeof (char)); |