?? stm32l1xx_lcd.c
字號:
/**
******************************************************************************
* @file stm32l1xx_lcd.c
* @author MCD Application Team
* @version V1.1.0
* @date 24-January-2012
* @brief This file provides firmware functions to manage the following
* functionalities of the LCD controller (LCD) peripheral:
* + Initialization and configuration
* + LCD RAM memory write
* + Interrupts and flags management
*
* @verbatim
===============================================================================
##### LCD Clock #####
===============================================================================
[..] LCDCLK is the same as RTCCLK.
[..] To configure the RTCCLK/LCDCLK, proceed as follows:
(+) Enable the Power Controller (PWR) APB1 interface clock using the
RCC_APB1PeriphClockCmd() function.
(+) Enable access to RTC domain using the PWR_RTCAccessCmd() function.
(+) Select the RTC clock source using the RCC_RTCCLKConfig() function.
[..] The frequency generator allows you to achieve various LCD frame rates
starting from an LCD input clock frequency (LCDCLK) which can vary
from 32 kHz up to 1 MHz.
##### LCD and low power modes #####
===============================================================================
[..] The LCD still active during STOP mode.
##### How to use this driver #####
===============================================================================
[..]
(#) Enable LCD clock using
RCC_APB1PeriphClockCmd(RCC_APB1Periph_LCD, ENABLE) function.
(#) Configure the LCD prescaler, divider, duty, bias and voltage source
using LCD_Init() function.
(#) Optionally you can enable/configure:
(++) LCD High Drive using the LCD_HighDriveCmd() function.
(++) LCD COM/SEG Mux using the LCD_MuxSegmentCmd() function.
(++) LCD Pulse ON Duration using the LCD_PulseOnDurationConfig() function.
(++) LCD Dead Time using the LCD_DeadTimeConfig() function
(++) The LCD Blink mode and frequency using the LCD_BlinkConfig() function.
(++) The LCD Contrast using the LCD_ContrastConfig() function.
(#) Call the LCD_WaitForSynchro() function to wait for LCD_FCR register
synchronization.
(#) Call the LCD_Cmd() to enable the LCD controller.
(#) Wait until the LCD Controller status is enabled and the step-up
converter is ready using the LCD_GetFlagStatus() and
LCD_FLAG_ENS and LCD_FLAG_RDY flags.
(#) Write to the LCD RAM memory using the LCD_Write() function.
(#) Request an update display using the LCD_UpdateDisplayRequest()
function.
(#) Wait until the update display is finished by checking the UDD
flag status using the LCD_GetFlagStatus(LCD_FLAG_UDD).
@endverbatim
******************************************************************************
* @attention
*
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
* TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*
* FOR MORE INFORMATION PLEASE READ CAREFULLY THE LICENSE AGREEMENT FILE
* LOCATED IN THE ROOT DIRECTORY OF THIS FIRMWARE PACKAGE.
*
* <h2><center>© COPYRIGHT 2012 STMicroelectronics</center></h2>
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "stm32l1xx_lcd.h"
#include "stm32l1xx_rcc.h"
/** @addtogroup STM32L1xx_StdPeriph_Driver
* @{
*/
/** @defgroup LCD
* @brief LCD driver modules
* @{
*/
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* ------------ LCD registers bit address in the alias region --------------- */
#define LCD_OFFSET (LCD_BASE - PERIPH_BASE)
/* --- CR Register ---*/
/* Alias word address of LCDEN bit */
#define CR_OFFSET (LCD_OFFSET + 0x00)
#define LCDEN_BitNumber 0x00
#define CR_LCDEN_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (LCDEN_BitNumber * 4))
/* Alias word address of MUX_SEG bit */
#define MUX_SEG_BitNumber 0x07
#define CR_MUX_SEG_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (MUX_SEG_BitNumber * 4))
/* --- FCR Register ---*/
/* Alias word address of HD bit */
#define FCR_OFFSET (LCD_OFFSET + 0x04)
#define HD_BitNumber 0x00
#define FCR_HD_BB (PERIPH_BB_BASE + (FCR_OFFSET * 32) + (HD_BitNumber * 4))
/* --- SR Register ---*/
/* Alias word address of UDR bit */
#define SR_OFFSET (LCD_OFFSET + 0x08)
#define UDR_BitNumber 0x02
#define SR_UDR_BB (PERIPH_BB_BASE + (SR_OFFSET * 32) + (UDR_BitNumber * 4))
#define FCR_MASK ((uint32_t)0xFC03FFFF) /* LCD FCR Mask */
#define CR_MASK ((uint32_t)0xFFFFFF81) /* LCD CR Mask */
#define PON_MASK ((uint32_t)0xFFFFFF8F) /* LCD PON Mask */
#define DEAD_MASK ((uint32_t)0xFFFFFC7F) /* LCD DEAD Mask */
#define BLINK_MASK ((uint32_t)0xFFFC1FFF) /* LCD BLINK Mask */
#define CONTRAST_MASK ((uint32_t)0xFFFFE3FF) /* LCD CONTRAST Mask */
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
/** @defgroup LCD_Private_Functions
* @{
*/
/** @defgroup LCD_Group1 Initialization and Configuration functions
* @brief Initialization and Configuration functions
*
@verbatim
===============================================================================
##### Initialization and Configuration functions #####
===============================================================================
@endverbatim
* @{
*/
/**
* @brief Deinitializes the LCD peripheral registers to their default reset
* values.
* @param None
* @retval None
*/
void LCD_DeInit(void)
{
/* Enable LCD reset state */
RCC_APB1PeriphResetCmd(RCC_APB1Periph_LCD, ENABLE);
/* Release LCD from reset state */
RCC_APB1PeriphResetCmd(RCC_APB1Periph_LCD, DISABLE);
}
/**
* @brief Initializes the LCD peripheral according to the specified parameters
* in the LCD_InitStruct.
* @note This function can be used only when the LCD is disabled.
* @param LCD_InitStruct: pointer to a LCD_InitTypeDef structure that contains
* the configuration information for the specified LCD peripheral.
* @retval None
*/
void LCD_Init(LCD_InitTypeDef* LCD_InitStruct)
{
/* Check function parameters */
assert_param(IS_LCD_PRESCALER(LCD_InitStruct->LCD_Prescaler));
assert_param(IS_LCD_DIVIDER(LCD_InitStruct->LCD_Divider));
assert_param(IS_LCD_DUTY(LCD_InitStruct->LCD_Duty));
assert_param(IS_LCD_BIAS(LCD_InitStruct->LCD_Bias));
assert_param(IS_LCD_VOLTAGE_SOURCE(LCD_InitStruct->LCD_VoltageSource));
LCD->FCR &= (uint32_t)FCR_MASK;
LCD->FCR |= (uint32_t)(LCD_InitStruct->LCD_Prescaler | LCD_InitStruct->LCD_Divider);
LCD_WaitForSynchro();
LCD->CR &= (uint32_t)CR_MASK;
LCD->CR |= (uint32_t)(LCD_InitStruct->LCD_Duty | LCD_InitStruct->LCD_Bias | \
LCD_InitStruct->LCD_VoltageSource);
}
/**
* @brief Fills each LCD_InitStruct member with its default value.
* @param LCD_InitStruct: pointer to a LCD_InitTypeDef structure which will
* be initialized.
* @retval None
*/
void LCD_StructInit(LCD_InitTypeDef* LCD_InitStruct)
{
/*--------------- Reset LCD init structure parameters values -----------------*/
LCD_InitStruct->LCD_Prescaler = LCD_Prescaler_1; /*!< Initialize the LCD_Prescaler member */
LCD_InitStruct->LCD_Divider = LCD_Divider_16; /*!< Initialize the LCD_Divider member */
LCD_InitStruct->LCD_Duty = LCD_Duty_Static; /*!< Initialize the LCD_Duty member */
LCD_InitStruct->LCD_Bias = LCD_Bias_1_4; /*!< Initialize the LCD_Bias member */
LCD_InitStruct->LCD_VoltageSource = LCD_VoltageSource_Internal; /*!< Initialize the LCD_VoltageSource member */
}
/**
* @brief Enables or disables the LCD Controller.
* @param NewState: new state of the LCD peripheral.
* This parameter can be: ENABLE or DISABLE.
* @retval None
*/
void LCD_Cmd(FunctionalState NewState)
{
assert_param(IS_FUNCTIONAL_STATE(NewState));
/* Check the parameters */
assert_param(IS_FUNCTIONAL_STATE(NewState));
*(__IO uint32_t *) CR_LCDEN_BB = (uint32_t)NewState;
}
/**
* @brief Waits until the LCD FCR register is synchronized in the LCDCLK domain.
* This function must be called after any write operation to LCD_FCR register.
* @param None
* @retval None
*/
void LCD_WaitForSynchro(void)
{
/* Loop until FCRSF flag is set */
while ((LCD->SR & LCD_FLAG_FCRSF) == (uint32_t)RESET)
{
}
}
/**
* @brief Enables or disables the low resistance divider. Displays with high
* internal resistance may need a longer drive time to achieve
* satisfactory contrast. This function is useful in this case if some
* additional power consumption can be tolerated.
* @note When this mode is enabled, the PulseOn Duration (PON) have to be
* programmed to 1/CK_PS (LCD_PulseOnDuration_1).
* @param NewState: new state of the low resistance divider.
* This parameter can be: ENABLE or DISABLE.
* @retval None
*/
void LCD_HighDriveCmd(FunctionalState NewState)
{
/* Check the parameters */
assert_param(IS_FUNCTIONAL_STATE(NewState));
*(__IO uint32_t *) FCR_HD_BB = (uint32_t)NewState;
}
/**
* @brief Enables or disables the Mux Segment.
* @note This function can be used only when the LCD is disabled.
* @param NewState: new state of the Mux Segment.
* This parameter can be: ENABLE or DISABLE.
* @retval None
*/
void LCD_MuxSegmentCmd(FunctionalState NewState)
{
/* Check the parameters */
assert_param(IS_FUNCTIONAL_STATE(NewState));
*(__IO uint32_t *) CR_MUX_SEG_BB = (uint32_t)NewState;
}
/**
* @brief Configures the LCD pulses on duration.
* @param LCD_PulseOnDuration: specifies the LCD pulse on duration in terms of
* CK_PS (prescaled LCD clock period) pulses.
* This parameter can be one of the following values:
* @arg LCD_PulseOnDuration_0: 0 pulse
* @arg LCD_PulseOnDuration_1: Pulse ON duration = 1/CK_PS
* @arg LCD_PulseOnDuration_2: Pulse ON duration = 2/CK_PS
* @arg LCD_PulseOnDuration_3: Pulse ON duration = 3/CK_PS
* @arg LCD_PulseOnDuration_4: Pulse ON duration = 4/CK_PS
* @arg LCD_PulseOnDuration_5: Pulse ON duration = 5/CK_PS
* @arg LCD_PulseOnDuration_6: Pulse ON duration = 6/CK_PS
* @arg LCD_PulseOnDuration_7: Pulse ON duration = 7/CK_PS
* @retval None
*/
void LCD_PulseOnDurationConfig(uint32_t LCD_PulseOnDuration)
{
/* Check the parameters */
assert_param(IS_LCD_PULSE_ON_DURATION(LCD_PulseOnDuration));
LCD->FCR &= (uint32_t)PON_MASK;
LCD->FCR |= (uint32_t)(LCD_PulseOnDuration);
}
/**
* @brief Configures the LCD dead time.
* @param LCD_DeadTime: specifies the LCD dead time.
* This parameter can be one of the following values:
* @arg LCD_DeadTime_0: No dead Time
* @arg LCD_DeadTime_1: One Phase between different couple of Frame
* @arg LCD_DeadTime_2: Two Phase between different couple of Frame
* @arg LCD_DeadTime_3: Three Phase between different couple of Frame
* @arg LCD_DeadTime_4: Four Phase between different couple of Frame
* @arg LCD_DeadTime_5: Five Phase between different couple of Frame
* @arg LCD_DeadTime_6: Six Phase between different couple of Frame
* @arg LCD_DeadTime_7: Seven Phase between different couple of Frame
* @retval None
*/
void LCD_DeadTimeConfig(uint32_t LCD_DeadTime)
{
/* Check the parameters */
assert_param(IS_LCD_DEAD_TIME(LCD_DeadTime));
LCD->FCR &= (uint32_t)DEAD_MASK;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -