Mercurial > hg > beaglert
view include/Utilities.h @ 39:638bc1ae2500 staging
Improved readibility of the DIGITAL code in the PRU, using register names instead of aliases and expanding some of the macros, removing unused macros. Binaries were not modified
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 13 May 2015 12:18:10 +0100 |
parents | 83baffda5786 |
children | 579c86316008 |
line wrap: on
line source
/* * Utilities.h * * Created on: Oct 27, 2014 * Author: parallels */ #ifndef UTILITIES_H_ #define UTILITIES_H_ extern int gNumAudioChannels; // How many audio channels are present extern int gNumAnalogChannels; // How many analog channels are present // Macros for accessing the analog values: usable _only_ within render() // Read an Analog input from input pin p at frame f #define analogRead(p, f) (analogIn[(f)*gNumAnalogChannels + (p)]) // Write an Analog output frame at output pin p, frame f, to value v #define analogWriteFrame(p, f, v) (analogOut[(f)*gNumAnalogChannels + (p)] = (v)) #define analogWrite(pin, frame, value) \ (({do {\ for (int _privateI=(frame); _privateI<numAnalogFrames; _privateI++){ \ analogWriteFrame(pin,_privateI,value); \ }\ } while (0);}),(void)0)\ #define setBit(word,bit) ((word)|(1<<(bit))) #define clearBit(word,bit) ((word)&~(1<<(bit))) #define getBit(word,bit) (((word)>>(bit))&1) #define changeBit(word,bit,value) ((clearBit((word),(bit))) | ((value)<<(bit))) //digital API: #define setDigitalDirectionFrame(pin,frame,direction) digital[(frame)]=changeBit(digital[(frame)],(pin),(direction)),void(0) #define setDigitalDirection(pin,frame,direction)\ (({do {\ for(int _privateI=(frame); _privateI<numDigitalFrames; _privateI++)\ setDigitalDirectionFrame(pin,_privateI,direction);\ } while (0);}), (void)0) #define digitalWriteAll(frame,value) digital[(frame)]=0xffff0000*(!(!value)); //sets the bit in the high word, clears the bit in the low word (just in case the direction was not previously set) #define digitalWriteFrame(pin, frame, value) digital[(frame)]=( changeBit(digital[(frame)], (pin+16), (value)) & (0xffffffff-(1<<(pin))) ) //could have been done with two subsequent assignments #define digitalWrite(pin, frame, value) \ (({do {\ for (int _privateI=(frame); _privateI<numDigitalFrames; _privateI++) \ digitalWriteFrame(pin,_privateI,value); \ } while (0);}),(void)0)\ #define digitalRead(pin, frame) ( getBit(digital[(frame)], pin+16) ) float map(float x, float in_min, float in_max, float out_min, float out_max); float constrain(float x, float min_val, float max_val); #endif /* UTILITIES_H_ */