|
@@ -28,13 +28,16 @@
|
28
|
28
|
uint8_t u8g_com_arduino_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
29
|
29
|
#define U8G_COM_HAL_SW_SPI_FN u8g_com_arduino_sw_spi_fn
|
30
|
30
|
|
31
|
|
- uint8_t u8g_com_arduino_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
32
|
|
- #define U8G_COM_HAL_HW_SPI_FN u8g_com_arduino_hw_spi_fn
|
33
|
|
-
|
34
|
31
|
#ifdef __SAM3X8E__
|
|
32
|
+ uint8_t u8g_com_HAL_DUE_shared_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
|
33
|
+ #define U8G_COM_HAL_HW_SPI_FN u8g_com_HAL_DUE_shared_hw_spi_fn
|
|
34
|
+
|
35
|
35
|
uint8_t u8g_com_HAL_DUE_ST7920_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
36
|
36
|
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_HAL_DUE_ST7920_sw_spi_fn
|
37
|
37
|
#else
|
|
38
|
+ uint8_t u8g_com_arduino_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
|
39
|
+ #define U8G_COM_HAL_HW_SPI_FN u8g_com_arduino_hw_spi_fn
|
|
40
|
+
|
38
|
41
|
uint8_t u8g_com_arduino_st7920_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
39
|
42
|
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_arduino_st7920_spi_fn
|
40
|
43
|
#endif
|