CRpi
A library for rpi with intefaces to: gpio, pwm, dma
portsManager.hpp
1 #ifndef PORTS_MANAGER_HPP
2 #define PORTS_MANAGER_HPP
3 
4 typedef unsigned int Bcm_port;
5 int isPortUsed(Bcm_port bcmPort);
6 
7 int acquirePort(Bcm_port bcmPort);
8 
9 #endif