uni_avr_rpi.h 1.0 KB

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