2017-11-03 01:57:08 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-11-03 01:57:08 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-11-03 01:57:08 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-07-05 03:44:12 +00:00
|
|
|
#pragma once
|
2017-11-03 01:57:08 +00:00
|
|
|
|
2018-11-05 00:15:18 +00:00
|
|
|
// Use this file to select the com driver for device drivers that are NOT in the U8G library
|
2017-11-03 01:57:08 +00:00
|
|
|
|
2019-08-28 13:12:18 +00:00
|
|
|
#include <U8glib.h>
|
|
|
|
|
2017-11-03 01:57:08 +00:00
|
|
|
#ifndef U8G_HAL_LINKS
|
|
|
|
|
2017-12-21 18:05:25 +00:00
|
|
|
#ifdef __SAM3X8E__
|
2019-09-05 05:54:00 +00:00
|
|
|
|
2019-05-04 22:59:36 +00:00
|
|
|
uint8_t u8g_com_HAL_DUE_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2018-05-02 12:54:06 +00:00
|
|
|
uint8_t u8g_com_HAL_DUE_shared_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2017-12-21 18:05:25 +00:00
|
|
|
uint8_t u8g_com_HAL_DUE_ST7920_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2019-09-05 05:54:00 +00:00
|
|
|
#define U8G_COM_HAL_SW_SPI_FN u8g_com_HAL_DUE_sw_spi_fn
|
|
|
|
#define U8G_COM_HAL_HW_SPI_FN u8g_com_HAL_DUE_shared_hw_spi_fn
|
|
|
|
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_HAL_DUE_ST7920_sw_spi_fn
|
|
|
|
|
|
|
|
#elif defined(__SAMD51__)
|
|
|
|
|
|
|
|
#define U8G_COM_HAL_HW_SPI_FN u8g_com_samd51_hw_spi_fn
|
|
|
|
#define U8G_COM_ST7920_HAL_HW_SPI u8g_com_samd51_st7920_hw_spi_fn
|
|
|
|
|
2019-06-19 00:34:16 +00:00
|
|
|
#elif defined(__STM32F1__)
|
2019-09-05 05:54:00 +00:00
|
|
|
|
2019-06-19 00:34:16 +00:00
|
|
|
uint8_t u8g_com_HAL_STM32F1_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2019-08-29 04:49:51 +00:00
|
|
|
uint8_t u8g_com_stm32duino_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2019-09-05 05:54:00 +00:00
|
|
|
#define U8G_COM_HAL_SW_SPI_FN u8g_com_HAL_STM32F1_sw_spi_fn
|
|
|
|
#define U8G_COM_HAL_HW_SPI_FN u8g_com_stm32duino_hw_spi_fn
|
|
|
|
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_std_sw_spi_fn
|
|
|
|
#define U8G_COM_ST7920_HAL_HW_SPI u8g_com_stm32duino_hw_spi_fn
|
|
|
|
|
2019-07-18 10:42:16 +00:00
|
|
|
#elif defined(ARDUINO_ARCH_STM32)
|
2019-09-05 05:54:00 +00:00
|
|
|
|
2019-08-16 23:47:51 +00:00
|
|
|
uint8_t u8g_com_stm32duino_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2019-09-05 05:54:00 +00:00
|
|
|
#define U8G_COM_HAL_HW_SPI_FN u8g_com_stm32duino_hw_spi_fn
|
|
|
|
|
2019-07-20 06:54:02 +00:00
|
|
|
#elif defined(__AVR__)
|
2019-09-05 05:54:00 +00:00
|
|
|
|
2019-05-04 22:59:36 +00:00
|
|
|
uint8_t u8g_com_HAL_AVR_sw_sp_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2019-09-05 05:54:00 +00:00
|
|
|
#define U8G_COM_HAL_SW_SPI_FN u8g_com_HAL_AVR_sw_sp_fn
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef U8G_COM_HAL_SW_SPI_FN
|
|
|
|
#define U8G_COM_HAL_SW_SPI_FN u8g_com_arduino_std_sw_spi_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_HAL_HW_SPI_FN
|
|
|
|
#define U8G_COM_HAL_HW_SPI_FN u8g_com_arduino_hw_spi_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_ST7920_HAL_SW_SPI
|
|
|
|
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_arduino_st7920_spi_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_ST7920_HAL_HW_SPI
|
|
|
|
#define U8G_COM_ST7920_HAL_HW_SPI u8g_com_arduino_st7920_hw_spi_fn
|
2017-12-21 18:05:25 +00:00
|
|
|
#endif
|
2017-11-03 01:57:08 +00:00
|
|
|
|
2019-08-29 02:21:38 +00:00
|
|
|
#ifdef TARGET_LPC1768
|
|
|
|
uint8_t u8g_com_HAL_LPC1768_ssd_hw_i2c_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
|
|
|
#endif
|
|
|
|
|
2019-09-05 05:54:00 +00:00
|
|
|
#define U8G_COM_SSD_I2C_HAL u8g_com_arduino_ssd_i2c_fn
|
2017-11-03 01:57:08 +00:00
|
|
|
|
2019-07-20 06:54:02 +00:00
|
|
|
#if PIN_EXISTS(FSMC_CS)
|
2019-01-03 16:38:39 +00:00
|
|
|
uint8_t u8g_com_stm32duino_fsmc_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2019-09-05 05:54:00 +00:00
|
|
|
#define U8G_COM_HAL_FSMC_FN u8g_com_stm32duino_fsmc_fn
|
2019-01-03 16:38:39 +00:00
|
|
|
#endif
|
2019-07-20 06:54:02 +00:00
|
|
|
|
2019-08-29 02:21:38 +00:00
|
|
|
#elif defined(TARGET_LPC1768)
|
|
|
|
|
2017-11-03 01:57:08 +00:00
|
|
|
uint8_t u8g_com_HAL_LPC1768_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
|
|
|
uint8_t u8g_com_HAL_LPC1768_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
|
|
|
uint8_t u8g_com_HAL_LPC1768_ST7920_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
|
|
|
uint8_t u8g_com_HAL_LPC1768_ST7920_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
|
|
|
uint8_t u8g_com_HAL_LPC1768_ssd_hw_i2c_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
|
2019-09-05 05:54:00 +00:00
|
|
|
#define U8G_COM_HAL_SW_SPI_FN u8g_com_HAL_LPC1768_sw_spi_fn
|
|
|
|
#define U8G_COM_HAL_HW_SPI_FN u8g_com_HAL_LPC1768_hw_spi_fn
|
|
|
|
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_HAL_LPC1768_ST7920_sw_spi_fn
|
|
|
|
#define U8G_COM_ST7920_HAL_HW_SPI u8g_com_HAL_LPC1768_ST7920_hw_spi_fn
|
2019-09-02 10:45:02 +00:00
|
|
|
#define U8G_COM_SSD_I2C_HAL u8g_com_HAL_LPC1768_ssd_hw_i2c_fn
|
2017-11-03 01:57:08 +00:00
|
|
|
|
2019-09-05 05:54:00 +00:00
|
|
|
#endif
|
2019-08-29 02:21:38 +00:00
|
|
|
|
2019-09-05 05:54:00 +00:00
|
|
|
#ifndef U8G_COM_HAL_SW_SPI_FN
|
|
|
|
#define U8G_COM_HAL_SW_SPI_FN u8g_com_null_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_HAL_HW_SPI_FN
|
|
|
|
#define U8G_COM_HAL_HW_SPI_FN u8g_com_null_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_ST7920_HAL_SW_SPI
|
|
|
|
#define U8G_COM_ST7920_HAL_SW_SPI u8g_com_null_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_ST7920_HAL_HW_SPI
|
|
|
|
#define U8G_COM_ST7920_HAL_HW_SPI u8g_com_null_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_SSD_I2C_HAL
|
|
|
|
#define U8G_COM_SSD_I2C_HAL u8g_com_null_fn
|
|
|
|
#endif
|
|
|
|
#ifndef U8G_COM_HAL_FSMC_FN
|
|
|
|
#define U8G_COM_HAL_FSMC_FN u8g_com_null_fn
|
2018-11-05 00:15:18 +00:00
|
|
|
#endif
|