annotate include/Utilities.h @ 16:670be80463a3 matrix_gpio

- analog matrixIn/matrixOut are now mapped as floats from 0 to 1 - use of an external PRU code can be enabled with -P <filename> - 16 channels of programmable GPIO can be accessed straight from render() either writing directly to the matrixGpio[] array or using digitalWrite(), digitalRead(), setDigitalDirection() macros from Utilities.h .
author Giulio Moro <giuliomoro@yahoo.it>
date Mon, 27 Apr 2015 13:01:57 +0100
parents 6adb088196a7
children 31503d9de101
rev   line source
andrewm@0 1 /*
andrewm@0 2 * Utilities.h
andrewm@0 3 *
andrewm@0 4 * Created on: Oct 27, 2014
andrewm@0 5 * Author: parallels
andrewm@0 6 */
andrewm@0 7
andrewm@0 8 #ifndef UTILITIES_H_
andrewm@0 9 #define UTILITIES_H_
andrewm@0 10
andrewm@13 11 extern int gNumAudioChannels; // How many audio channels are present
andrewm@13 12 extern int gNumMatrixChannels; // How many matrix channels are present
andrewm@13 13
andrewm@5 14 // Macros for accessing the matrix values: usable _only_ within render()
andrewm@5 15
andrewm@5 16 // Read an analog input from input pin p at frame f
andrewm@13 17 #define analogRead(p, f) (matrixIn[(f)*gNumMatrixChannels + (p)])
andrewm@5 18 // Write an analog output frame at output pin p, frame f, to value v
andrewm@13 19 #define analogWrite(p, f, v) (matrixOut[(f)*gNumMatrixChannels + (p)] = (uint16_t)(v))
andrewm@5 20
giuliomoro@16 21 #define setBit(word,bit) ((word)|(1<<(bit)))
giuliomoro@16 22 #define clearBit(word,bit) ((word)&~(1<<(bit)))
giuliomoro@16 23 #define getBit(word,bit) (((word)>>(bit))&1)
giuliomoro@16 24 #define changeBit(word,bit,value) ((clearBit((word),(bit))) | ((value)<<(bit)))
giuliomoro@16 25 //matrixGpio API:
giuliomoro@16 26 #define setDigitalDirection(pin,frame,direction) matrixGpio[(frame)]=changeBit(matrixGpio[(frame)],(pin),(direction))
giuliomoro@16 27 #define digitalWriteAll(frame,value) matrixGpio[(frame)]=0xffff0000*(!(!value));
giuliomoro@16 28 //sets the bit in the high word, clears the bit in the low word (just in case the direction was not previously set)
giuliomoro@16 29 #define digitalWrite(pin, frame, value) matrixGpio[(frame)]=( changeBit(matrixGpio[(frame)], (pin+16), (value)) & (0xffffffff-(1<<(pin))) ) //could have been done with two subsequent assignments
giuliomoro@16 30 #define digitalRead(pin, frame) ( getBit(matrixGpio[(frame)], pin+16) )
giuliomoro@16 31
andrewm@0 32 float map(float x, float in_min, float in_max, float out_min, float out_max);
andrewm@0 33 float constrain(float x, float min_val, float max_val);
andrewm@0 34
andrewm@0 35 #endif /* UTILITIES_H_ */