summaryrefslogtreecommitdiff
path: root/yocto/meta-bsp-rvphone/recipes-bsp/esp32spid/src/spi.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2025-02-15 02:15:57 +0100
committerUros Majstorovic <majstor@majstor.org>2025-02-15 02:15:57 +0100
commit7269b0a3f0b7e5f41ba65c7321fde9b8fd88c642 (patch)
treea03775e3a61d752850df6ac6b6bdcc26f5dcc973 /yocto/meta-bsp-rvphone/recipes-bsp/esp32spid/src/spi.h
parentb8015c9579d88bb7c5f0637c1bac836ec71bda1d (diff)
removed old (compulab) yocto directory
Diffstat (limited to 'yocto/meta-bsp-rvphone/recipes-bsp/esp32spid/src/spi.h')
-rw-r--r--yocto/meta-bsp-rvphone/recipes-bsp/esp32spid/src/spi.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/yocto/meta-bsp-rvphone/recipes-bsp/esp32spid/src/spi.h b/yocto/meta-bsp-rvphone/recipes-bsp/esp32spid/src/spi.h
deleted file mode 100644
index c1a4d94..0000000
--- a/yocto/meta-bsp-rvphone/recipes-bsp/esp32spid/src/spi.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <stdint.h>
-
-#define SPI_GPIO_BANK "gpiochip2"
-#define SPI_GPIO_CTS 3
-#define SPI_GPIO_RTS 4
-
-#define SPI_MTU 1500
-#define SPI_SIZE_BUF (SPI_MTU + 8)
-#define SPI_SIZE_HDR 3
-
-#define SPI_SIZE_BUFQ 64
-#define SPI_SIZE_MSGQ 256
-
-#define SPI_MTYPE_TUN 1
-
-#define SPI_OK 0
-#define SPI_ERR -1
-#define SPI_ERR_OPEN -10
-#define SPI_ERR_MSG -11
-
-unsigned char *spi_alloc(void);
-void spi_free(unsigned char *buffer);
-int spi_xchg(unsigned char mtype, unsigned char *buffer, uint16_t len);
-int spi_init(char *fname); \ No newline at end of file