|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- /*
- * wiringPi.h:
- * Arduino like Wiring library for the Raspberry Pi.
- * Copyright (c) 2012-2017 Gordon Henderson
- ***********************************************************************
- * This file is part of wiringPi:
- * https://github.com/nuncio-bitis/WiringPi/
- *
- * wiringPi is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * wiringPi is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with wiringPi. If not, see <http://www.gnu.org/licenses/>.
- ***********************************************************************
- */
-
- #ifndef __WIRING_PI_H__
- #define __WIRING_PI_H__
-
- #include <stdint.h>
-
- #include <stdbool.h>
- #ifndef TRUE
- # define TRUE true
- # define FALSE false
- #endif
-
- // GCC warning suppressor - don't warn about unused parameters (-Wunused-parameter)
- #define UNU __attribute__((unused))
- #define UNUSED __attribute__((unused))
-
- // Mask for the bottom 64 pins which belong to the Raspberry Pi
- // The others are available for the other devices
- // @TODO Replace these checks with a check for (pin < 64)
- #define PI_GPIO_MASK (0xFFFFFFC0)
- #define MAX_ONBOARD_PINS 64
-
-
- // wiringPi modes
- #define WPI_MODE_PINS 0 // Virtual pin numbers 0 through 16
- #define WPI_MODE_GPIO 1 // Broadcom GPIO pin numbers
- #define WPI_MODE_GPIO_SYS 2 // Broadcom GPIO pin numbers, but uses /sys/class/gpio (slower)
- #define WPI_MODE_PHYS 3 // Raspberry Pi physical pins
- #define WPI_MODE_PIFACE 4 // UNUSED
- #define WPI_MODE_UNINITIALISED -1
-
- // Pin modes
- #define INPUT 0
- #define OUTPUT 1
- #define PWM_OUTPUT 2
- #define GPIO_CLOCK 3
- #define SOFT_PWM_OUTPUT 4
- #define SOFT_TONE_OUTPUT 5
- #define PWM_TONE_OUTPUT 6
-
- // Pin levels
- #define LOW 0
- #define HIGH 1
-
- // Pull up/down/none
- #define PUD_OFF 0
- #define PUD_DOWN 1
- #define PUD_UP 2
-
- // PWM
- #define PWM_MODE_MS 0
- #define PWM_MODE_BAL 1
-
- // Interrupt levels
- #define INT_EDGE_SETUP 0
- #define INT_EDGE_FALLING 1
- #define INT_EDGE_RISING 2
- #define INT_EDGE_BOTH 3
-
- // Pi model types and version numbers
- // Intended for the GPIO program
- // Use at your own risk
- // https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#new-style-revision-codes
- // Format (bits): FMMM'CCCC'PPPP'TTTTTTTT'RRRR
-
- // F bit (New flag)
- #define PI_FLAG_OLD 0 // old-style revision
- #define PI_FLAG_NEW 1 // new-style revision
-
- // MMM bits (Memory size)
- #define PI_MEM_256M 0
- #define PI_MEM_512M 1
- #define PI_MEM_1G 2
- #define PI_MEM_2G 3
- #define PI_MEM_4G 4
- #define PI_MEM_8G 5
-
- // CCCC bits (Manufacturer)
- #define PI_MAKER_SONY 0 // Sony UK
- #define PI_MAKER_EGOMAN 1
- #define PI_MAKER_EMBEST 2
- #define PI_MAKER_SONYJAPAN 3
- #define PI_MAKER_EMBEST4 4
- #define PI_MAKER_STADIUM 5
-
- // PPPP bits (Processor)
- #define PI_PROC_BCM2835 0
- #define PI_PROC_BCM2836 1
- #define PI_PROC_BCM2837 2
- #define PI_PROC_BCM2711 3
-
- // TTTTTTTT bits (Type)
- #define PI_MODEL_A 0x00
- #define PI_MODEL_B 0x01
- #define PI_MODEL_AP 0x02
- #define PI_MODEL_BP 0x03
- #define PI_MODEL_2B 0x04
- #define PI_ALPHA 0x05
- #define PI_MODEL_CM1 0x06
- // 0x07
- #define PI_MODEL_3B 0x08
- #define PI_MODEL_ZERO 0x09
- #define PI_MODEL_CM3 0x0A
- // 0x0B
- #define PI_MODEL_ZERO_W 0x0C
- #define PI_MODEL_3BP 0x0D
- #define PI_MODEL_3AP 0x0E
- // 0x0F
- #define PI_MODEL_CM3P 0x10
- #define PI_MODEL_4B 0x11
- #define PI_MODEL_ZERO_2W 0x12
- #define PI_MODEL_400 0x13
- #define PI_MODEL_CM4 0x14
-
- // RRRR bits (Revision)
- #define PI_VERSION_1 0
- #define PI_VERSION_1_1 1
- #define PI_VERSION_1_2 2
- #define PI_VERSION_2 3
- #define PI_VERSION_1_4 4
-
-
- extern const char *piModelNames [21];
- extern const char *piRevisionNames [ 5];
- extern const char *piMakerNames [16];
- extern const char *piProcessorNames[ 5];
- extern const char *piMemorySize [ 8];
-
-
- // Intended for the GPIO program
- // Use at your own risk.
-
- // Threads
- #define PI_THREAD(X) void *X (UNUSED void *dummy)
-
- // Failure modes
- #define WPI_FATAL true
- #define WPI_NON_FATAL false
-
-
- // wiringPiNodeStruct:
- // This describes additional device nodes in the extended wiringPi
- // 2.0 scheme of things. It's a simple linked list.
- struct wiringPiNodeStruct
- {
- int pinBase;
- int pinMax;
-
- int fd; // Node specific
- unsigned int data0; // ditto
- unsigned int data1; // ditto
- unsigned int data2; // ditto
- unsigned int data3; // ditto
-
- void (*pinMode) (struct wiringPiNodeStruct *node, int pin, int mode);
- void (*pullUpDnControl) (struct wiringPiNodeStruct *node, int pin, int mode);
- int (*digitalRead) (struct wiringPiNodeStruct *node, int pin);
- void (*digitalWrite) (struct wiringPiNodeStruct *node, int pin, int value);
- void (*pwmWrite) (struct wiringPiNodeStruct *node, int pin, int value);
- int (*pwmRead) (struct wiringPiNodeStruct *node, int pin);
- int (*analogRead) (struct wiringPiNodeStruct *node, int pin);
- void (*analogWrite) (struct wiringPiNodeStruct *node, int pin, int value);
-
- struct wiringPiNodeStruct *next;
- };
-
- extern struct wiringPiNodeStruct *wiringPiNodes;
-
- // Export variables for the hardware pointers
- extern volatile unsigned int *_wiringPiGpio;
- extern volatile unsigned int *_wiringPiPwm;
- extern volatile unsigned int *_wiringPiClk;
- extern volatile unsigned int *_wiringPiPads;
- extern volatile unsigned int *_wiringPiTimer;
- extern volatile unsigned int *_wiringPiTimerIrqRaw;
-
- // ----------------------------------------------------------------------------
-
- // Function prototypes
- // c++ wrappers thanks to a comment by Nick Lott
- // (and others on the Raspberry Pi forums)
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- // ----------------------------------------------------------------------------
-
- // Internal
- extern int wiringPiFailure (int fatal, const char *message, ...);
-
- // ----------------------------------------------------------------------------
-
- // Core wiringPi functions
- extern struct wiringPiNodeStruct *wiringPiFindNode (int pin);
- extern struct wiringPiNodeStruct *wiringPiNewNode (int pinBase, int numPins);
-
- extern void wiringPiVersion (int *major, int *minor);
- extern int wiringPiSetup (void); // using WiringPi pin numbering
- extern int wiringPiSetupSys (void); // using /sys/class/gpio
- extern int wiringPiSetupGpio (void); // using BCM pin numbering
- extern int wiringPiSetupPhys (void); // using physical pin numbering
-
- // See "Pin modes" above (In, Out, SoftPWMOut, SoftToneOut, PWMToneOut, PWMOut, Clock)
- extern void pinMode (int pin, int mode);
-
- // Set Function Select on pin - GPIO, ALT0-ALT5
- extern void pinModeAlt (int pin, int mode);
- extern int getAlt (int pin); // Returns Function Select: 0-5)
- #define setAlt(pin, mode) pinModeAlt(pin, mode) // for symmetry
-
- // Set input pin as pull-up or pull-down
- extern void pullUpDnControl (int pin, int pud);
-
- // Read/Write pin (HIGH or LOW)
- extern int digitalRead (int pin);
- extern void digitalWrite (int pin, int value);
-
- // Analog read/write is only for an external hardware module,
- // therefore pin must be >= MAX_ONBOARD_PINS
- extern int analogRead (int pin);
- extern void analogWrite (int pin, int value);
-
- // On-Board Raspberry Pi hardware specific stuff
- extern int piGpioLayout (void);
- extern uint32_t piBoardId (int *model, int *proc, int *rev, int *mem, int *maker, int *overVolted);
- extern int wpiPinToGpio (int wpiPin);
- extern int physPinToGpio (int physPin);
- extern void setPadDrive (int group, int value);
-
- // PWM funcs
- extern void pwmWrite (int pin, int value);
- extern int pwmRead (int pin);
- extern void pwmToneWrite (int pin, int freq);
- extern void pwmSetMode (int mode); // balanced or mark/space mode
- extern void pwmSetRange (unsigned int range);
- extern void pwmSetClock (int divisor);
-
- // Set a GPIO as an output clock.
- // Only works on certain pins.
- extern void gpioClockSet (int pin, int freq);
-
- // Read all 32 bits in a bank
- // BCM GPIOs 0..31 (Bank 0)
- // BCM GPIOs 32..63 (Bank 1)
- extern uint32_t digitalReadBank(int bank);
-
- // Read/Write 8-bit data on 8 consecutive WiringPi pins:
- // WPi: 0, 1, 2, 3, 4, 5, 6, 7
- // BCM: 17, 18, 27, 22, 23, 24, 25, 4 on a Pi v1 rev 3 onwards or B+, 2, 3, zero
- extern unsigned int digitalReadByte(void);
- extern unsigned int digitalReadByte2(void);
- extern void digitalWriteByte (int value);
- extern void digitalWriteByte2 (int value);
-
- // ----------------------------------------------------------------------------
- // Interrupts (Also Pi hardware specific)
-
- // Set up for a callback to be called when the specified pin changes according to mode.
- // mode = INT_EDGE_SETUP, INT_EDGE_FALLING, INT_EDGE_RISING, INT_EDGE_BOTH
- // Uses SYS mode, and also waitForInterrupt
- // @NOTE: This leaves gpios exported in /sys/class/gpio when the program ends.
- extern int wiringPiISR (int pin, int mode, void (*function)(int));
-
- // Same as wiringPiISR above, but takes a list of pins to wait for.
- // Note that the mode applies to all the specified pins.
- extern int wiringPiISRmulti (int pins[], int n_pins, int mode, void (*function)(int));
-
- // Internal-only (unless you know how to set up /sys/class/gpio)
- // Wait for "interrupt" on a GPIO pin.
- // Must be in SYS mode (wiringPiSetupSys was called for setup)
- // @NOTE: This leaves gpios exported in /sys/class/gpio when the program ends.
- extern int waitForInterrupt (int pin, int mS);
-
- // ----------------------------------------------------------------------------
- // Threads
- extern int piThreadCreate (void *(*fn)(void *));
- extern void piLock (int key);
- extern void piUnlock (int key);
-
- // Scheduling priority
- extern int piHiPri (const int pri);
-
- // ----------------------------------------------------------------------------
-
- extern void delay (unsigned int milliseconds);
- extern void delayMicroseconds (unsigned int microseconds);
- // Please use these for code that's easier to comprehend:
- #define delayMs(ms) delay(ms)
- #define delayUs(us) delayMicroseconds(us)
-
- // These report the amount of time passed since wiringPiSetup* was called.
- extern unsigned int millis(void);
- extern unsigned int micros(void);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif // __WIRING_PI_H__
|