uni_avr_rpi.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. // unification for AVR and RPI
  2. #ifdef __AVR
  3. //#include "Arduino.h"
  4. #include "Marlin.h"
  5. #define GPIO_INP(gpio) pinMode(gpio, INPUT)
  6. #define GPIO_OUT(gpio) pinMode(gpio, OUTPUT)
  7. #define GPIO_SET(gpio) digitalWrite(gpio, HIGH)
  8. #define GPIO_CLR(gpio) digitalWrite(gpio, LOW)
  9. #define GPIO_GET(gpio) (digitalRead(gpio) != LOW)
  10. #define DELAY(delay) delayMicroseconds(delay)
  11. #define PRINT MYSERIAL.print
  12. #endif //RC522_AVR
  13. #ifdef __RPI
  14. #include <bcm2835.h>
  15. #define GPIO_INP(gpio) bcm2835_gpio_fsel(gpio, BCM2835_GPIO_FSEL_INPT)
  16. #define GPIO_OUT(gpio) bcm2835_gpio_fsel(gpio, BCM2835_GPIO_FSEL_OUTP)
  17. #define GPIO_SET(gpio) bcm2835_gpio_write(gpio, HIGH)
  18. #define GPIO_CLR(gpio) bcm2835_gpio_write(gpio, LOW)
  19. #define GPIO_GET(gpio) (bcm2835_gpio_lev(gpio) != LOW)
  20. #include <unistd.h>
  21. #define DELAY(delay) usleep(delay)
  22. #define PRINT(p) print(p)
  23. #define DEC 10
  24. #define HEX 16
  25. void print(const char* pc) { printf("%s", pc); }
  26. void print(int v) { printf("%d", v); }
  27. void print(float v) { printf("%f", v); }
  28. #endif //RC522_RPI