card-os/include/card-os.h
2026-05-25 16:16:54 -04:00

14 lines
275 B
C

#ifndef CARD_OS
#define CARD_OS
#include <hardware/spi.h>
#include <pico/stdlib.h>
extern const uint8_t DISPLAY_SCK;
extern const uint8_t DISPLAY_TX;
extern const uint8_t DISPLAY_CS;
extern const uint8_t DISPLAY_DC;
extern spi_inst_t* const DISPLAY_SPI;
#endif // CARD_OS