| /** |
| * \file STM32F10x.h |
| * \brief Device implementation for ST STM32F10x ARM Cortex-M3 MCUs |
| * Requires the use of ST's Standard Peripheral Library |
| * \author Andy Gock |
| * |
| * \todo Code is untested! |
| */ |
| |
| /* |
| Copyright (c) 2012, Andy Gock |
| |
| All rights reserved. |
| |
| Redistribution and use in source and binary forms, with or without |
| modification, are permitted provided that the following conditions are met: |
| * Redistributions of source code must retain the above copyright |
| notice, this list of conditions and the following disclaimer. |
| * Redistributions in binary form must reproduce the above copyright |
| notice, this list of conditions and the following disclaimer in the |
| documentation and/or other materials provided with the distribution. |
| * Neither the name of Andy Gock nor the |
| names of its contributors may be used to endorse or promote products |
| derived from this software without specific prior written permission. |
| |
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| DISCLAIMED. IN NO EVENT SHALL ANDY GOCK BE LIABLE FOR ANY |
| DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| #ifndef __glcd_spi_h__ |
| #define __glcd_spi_h__ |
| |
| #include "spi.h" |
| |
| /** SPI port number e.g SPI1, SPI2 (not to be confused with GPIOA, GPIOB, etc) */ |
| #define CONTROLLER_SPI_NUMBER |
| #define CONTROLLER_SPI_PORT |
| #define CONTROLLER_SPI_SCK_PIN |
| #define CONTROLLER_SPI_SCK_PINSRC |
| #define CONTROLLER_SPI_MISO_PIN |
| #define CONTROLLER_SPI_MISO_PINSRC |
| #define CONTROLLER_SPI_MOSI_PIN |
| #define CONTROLLER_SPI_MOSI_PINSRC |
| |
| #define CONTROLLER_SPI_SS_PORT |
| #define CONTROLLER_SPI_SS_PIN |
| #define CONTROLLER_SPI_DC_PORT GPIOC |
| #define CONTROLLER_SPI_DC_PIN GPIO_Pin_10 |
| #define CONTROLLER_SPI_RST_PORT GPIOC |
| #define CONTROLLER_SPI_RST_PIN GPIO_Pin_11 |
| |
| #define GLCD_SELECT() SPI_SELECT_CH2() |
| #define GLCD_DESELECT() SPI_DESELECT_CH2() |
| #define GLCD_DC_LOW() GPIO_ResetBits(CONTROLLER_SPI_DC_PORT,CONTROLLER_SPI_DC_PIN) |
| #define GLCD_DC_HIGH() GPIO_SetBits(CONTROLLER_SPI_DC_PORT,CONTROLLER_SPI_DC_PIN) |
| #define GLCD_A0_LOW() GPIO_ResetBits(CONTROLLER_SPI_DC_PORT,CONTROLLER_SPI_DC_PIN) |
| #define GLCD_A0_HIGH() GPIO_SetBits(CONTROLLER_SPI_DC_PORT,CONTROLLER_SPI_DC_PIN) |
| #define GLCD_RESET_LOW() GPIO_ResetBits(CONTROLLER_SPI_RST_PORT,CONTROLLER_SPI_RST_PIN) |
| #define GLCD_RESET_HIGH() GPIO_SetBits(CONTROLLER_SPI_RST_PORT,CONTROLLER_SPI_RST_PIN) |
| /*#ifdef HW_V01 |
| #define GLCD_BKL_ON() GPIO_SetBits(GPIOD, GPIO_Pin_2) |
| #define GLCD_BKL_OFF() GPIO_ResetBits(GPIOD, GPIO_Pin_2) |
| #endif |
| #ifdef HW_V02*/ |
| #define GLCD_BKL_ON() GPIO_SetBits(GPIOA, GPIO_Pin_15) |
| #define GLCD_BKL_OFF() GPIO_ResetBits(GPIOA, GPIO_Pin_15) |
| //#endif |
| |
| /** |
| * Initialise the LCD. This function is platform and controller specific. |
| */ |
| void glcd_HW_init(void); |
| |
| /** |
| * Write a byte to the connected SPI slave. |
| * \param c Byte to be written |
| * \return Returned value from SPI (often not used) |
| */ |
| void glcd_spi_write(uint8_t c); |
| |
| |
| /** |
| * Reset the LCD. |
| * \note Not all LCD controllers support reset. |
| */ |
| void glcd_reset(void); |
| |
| void glcd_bkl_on(void); |
| |
| void glcd_bkl_off(void); |
| |
| #endif |
| /* __glcd_spi_h__ */ |