2013-10-21 07:12:48 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
|
|
|
* http://ugfx.org/license.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-03-27 22:52:30 +00:00
|
|
|
* @file boards/addons/gdisp/board_SSD1306_spi.h
|
2013-10-21 07:12:48 +00:00
|
|
|
* @brief GDISP Graphic Driver subsystem board interface for the SSD1306 display.
|
2014-03-27 22:52:30 +00:00
|
|
|
*
|
|
|
|
* @note This file contains a mix of hardware specific and operating system specific
|
|
|
|
* code. You will need to change it for your CPU and/or operating system.
|
2013-10-21 07:12:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GDISP_LLD_BOARD_H
|
|
|
|
#define _GDISP_LLD_BOARD_H
|
|
|
|
|
2013-10-25 04:39:56 +00:00
|
|
|
// The command byte to put on the front of each page line
|
|
|
|
#define SSD1306_PAGE_PREFIX 0x40 // Co = 0, D/C = 1
|
2013-10-21 07:12:48 +00:00
|
|
|
|
|
|
|
// For a multiple display configuration we would put all this in a structure and then
|
|
|
|
// set g->board to that structure.
|
|
|
|
#define SSD1306_RESET_PORT GPIOB
|
|
|
|
#define SSD1306_RESET_PIN 5
|
|
|
|
#define SSD1306_MISO_PORT GPIOB
|
|
|
|
#define SSD1306_MISO_PIN 8
|
|
|
|
#define SSD1306_MOSI_PORT GPIOB
|
|
|
|
#define SSD1306_MOSI_PIN 7
|
|
|
|
#define SSD1306_SCK_PORT GPIOB
|
|
|
|
#define SSD1306_SCK_PIN 6
|
|
|
|
#define SSD1306_CS_PORT GPIOB
|
|
|
|
#define SSD1306_CS_PIN 5
|
|
|
|
#define SET_RST palSetPad(SSD1306_RESET_PORT, SSD1306_RESET_PIN);
|
|
|
|
#define CLR_RST palClearPad(SSD1306_RESET_PORT, SSD1306_RESET_PIN);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SPI1 configuration structure.
|
|
|
|
* Speed 42MHz, CPHA=0, CPOL=0, 8bits frames, MSb transmitted first.
|
|
|
|
* The slave select line is the pin 4 on the port GPIOA.
|
|
|
|
*/
|
|
|
|
static const SPIConfig spi1config = {
|
2013-12-21 03:21:59 +00:00
|
|
|
0,
|
2013-10-21 07:12:48 +00:00
|
|
|
/* HW dependent part.*/
|
|
|
|
SSD1306_MISO_PORT,
|
|
|
|
SSD1306_MISO_PIN,
|
|
|
|
0
|
|
|
|
//SPI_CR1_BR_0
|
|
|
|
};
|
|
|
|
|
2013-10-24 01:59:41 +00:00
|
|
|
#if GFX_USE_OS_CHIBIOS
|
|
|
|
static int32_t thdPriority = 0;
|
|
|
|
#endif
|
|
|
|
|
2013-10-21 07:12:48 +00:00
|
|
|
static inline void init_board(GDisplay *g) {
|
2013-10-25 04:39:56 +00:00
|
|
|
unsigned i;
|
2013-10-21 07:12:48 +00:00
|
|
|
|
|
|
|
// As we are not using multiple displays we set g->board to NULL as we don't use it.
|
|
|
|
g->board = 0;
|
|
|
|
|
2013-10-25 04:39:56 +00:00
|
|
|
|
2013-10-21 07:12:48 +00:00
|
|
|
switch(g->controllerdisplay) {
|
|
|
|
case 0: // Set up for Display 0
|
|
|
|
// RESET pin.
|
|
|
|
palSetPadMode(SSD1306_RESET_PORT, SSD1306_RESET_PIN, PAL_MODE_OUTPUT_PUSHPULL);
|
|
|
|
|
|
|
|
palSetPadMode(SSD1306_MISO_PORT, SSD1306_MISO_PIN, PAL_MODE_ALTERNATE(1)|
|
|
|
|
PAL_STM32_OSPEED_HIGHEST);
|
|
|
|
palSetPadMode(SSD1306_MOSI_PORT, SSD1306_MOSI_PIN, PAL_MODE_ALTERNATE(1)|
|
|
|
|
PAL_STM32_OSPEED_HIGHEST);
|
|
|
|
palSetPadMode(SSD1306_SCK_PORT, SSD1306_SCK_PIN, PAL_MODE_ALTERNATE(1)|
|
|
|
|
PAL_STM32_OSPEED_HIGHEST);
|
|
|
|
palSetPad(SSD1306_CS_PORT, SSD1306_CS_PIN);
|
|
|
|
palSetPadMode(SSD1306_CS_PORT, SSD1306_CS_PIN, PAL_MODE_ALTERNATE(1)|
|
|
|
|
PAL_STM32_OSPEED_HIGHEST);
|
2013-10-24 01:59:41 +00:00
|
|
|
spiInit();
|
2013-10-21 07:12:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void post_init_board(GDisplay *g) {
|
|
|
|
(void) g;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void setpin_reset(GDisplay *g, bool_t state) {
|
|
|
|
(void) g;
|
|
|
|
if(state)
|
|
|
|
CLR_RST
|
|
|
|
else
|
|
|
|
SET_RST
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void acquire_bus(GDisplay *g) {
|
|
|
|
(void) g;
|
2013-10-24 01:59:41 +00:00
|
|
|
#if GFX_USE_OS_CHIBIOS
|
|
|
|
thdPriority = (int32_t)chThdGetPriority();
|
|
|
|
chThdSetPriority(HIGHPRIO);
|
|
|
|
#endif
|
2013-10-21 07:12:48 +00:00
|
|
|
spiAcquireBus(&SPID1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void release_bus(GDisplay *g) {
|
|
|
|
(void) g;
|
2013-10-24 01:59:41 +00:00
|
|
|
#if GFX_USE_OS_CHIBIOS
|
|
|
|
chThdSetPriority(thdPriority);
|
|
|
|
#endif
|
2013-10-21 07:12:48 +00:00
|
|
|
spiReleaseBus(&SPID1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void write_cmd(GDisplay *g, uint8_t cmd) {
|
|
|
|
uint8_t command[2];
|
2013-11-06 07:21:58 +00:00
|
|
|
(void) g;
|
2013-10-21 07:12:48 +00:00
|
|
|
|
|
|
|
command[0] = 0x00; // Co = 0, D/C = 0
|
|
|
|
command[1] = cmd;
|
|
|
|
|
|
|
|
spiStart(&SPID1, &spi1config);
|
|
|
|
spiSelect(&SPID1);
|
|
|
|
spiStartSend(&SPID1, 2, command);
|
|
|
|
spiUnselect(&SPID1);
|
|
|
|
spiStop(&SPID1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void write_data(GDisplay *g, uint8_t* data, uint16_t length) {
|
|
|
|
(void) g;
|
|
|
|
|
|
|
|
spiStart(&SPID1, &spi1config);
|
|
|
|
spiSelect(&SPID1);
|
|
|
|
spiStartSend(&SPID1, length, data);
|
|
|
|
spiUnselect(&SPID1);
|
|
|
|
spiStop(&SPID1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _GDISP_LLD_BOARD_H */
|
|
|
|
|