A simple 128x32 graphical LCD program to quickstart with LCD on ARM mbed IoT Starter Kit. This requires mbed Applciation Shield with FRDM-K64F platform.

Dependencies:   C12832

Committer:
tushki7
Date:
Sun Apr 12 15:45:52 2015 +0000
Revision:
1:eb68c94a8ee5
Parent:
0:60d829a0353a
A simple 128x32 LCD program with ARM mbed IoT Starter Kit;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tushki7 0:60d829a0353a 1 /**
tushki7 0:60d829a0353a 2 ******************************************************************************
tushki7 0:60d829a0353a 3 * @file stm32f0xx_hal_crc_ex.h
tushki7 0:60d829a0353a 4 * @author MCD Application Team
tushki7 0:60d829a0353a 5 * @version V1.2.0
tushki7 0:60d829a0353a 6 * @date 11-December-2014
tushki7 0:60d829a0353a 7 * @brief Header file of CRC HAL extension module.
tushki7 0:60d829a0353a 8 ******************************************************************************
tushki7 0:60d829a0353a 9 * @attention
tushki7 0:60d829a0353a 10 *
tushki7 0:60d829a0353a 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
tushki7 0:60d829a0353a 12 *
tushki7 0:60d829a0353a 13 * Redistribution and use in source and binary forms, with or without modification,
tushki7 0:60d829a0353a 14 * are permitted provided that the following conditions are met:
tushki7 0:60d829a0353a 15 * 1. Redistributions of source code must retain the above copyright notice,
tushki7 0:60d829a0353a 16 * this list of conditions and the following disclaimer.
tushki7 0:60d829a0353a 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
tushki7 0:60d829a0353a 18 * this list of conditions and the following disclaimer in the documentation
tushki7 0:60d829a0353a 19 * and/or other materials provided with the distribution.
tushki7 0:60d829a0353a 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
tushki7 0:60d829a0353a 21 * may be used to endorse or promote products derived from this software
tushki7 0:60d829a0353a 22 * without specific prior written permission.
tushki7 0:60d829a0353a 23 *
tushki7 0:60d829a0353a 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
tushki7 0:60d829a0353a 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
tushki7 0:60d829a0353a 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
tushki7 0:60d829a0353a 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
tushki7 0:60d829a0353a 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
tushki7 0:60d829a0353a 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
tushki7 0:60d829a0353a 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
tushki7 0:60d829a0353a 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
tushki7 0:60d829a0353a 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
tushki7 0:60d829a0353a 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
tushki7 0:60d829a0353a 34 *
tushki7 0:60d829a0353a 35 ******************************************************************************
tushki7 0:60d829a0353a 36 */
tushki7 0:60d829a0353a 37
tushki7 0:60d829a0353a 38 /* Define to prevent recursive inclusion -------------------------------------*/
tushki7 0:60d829a0353a 39 #ifndef __STM32F0xx_HAL_CRC_EX_H
tushki7 0:60d829a0353a 40 #define __STM32F0xx_HAL_CRC_EX_H
tushki7 0:60d829a0353a 41
tushki7 0:60d829a0353a 42 #ifdef __cplusplus
tushki7 0:60d829a0353a 43 extern "C" {
tushki7 0:60d829a0353a 44 #endif
tushki7 0:60d829a0353a 45
tushki7 0:60d829a0353a 46 /* Includes ------------------------------------------------------------------*/
tushki7 0:60d829a0353a 47 #include "stm32f0xx_hal_def.h"
tushki7 0:60d829a0353a 48
tushki7 0:60d829a0353a 49 /** @addtogroup STM32F0xx_HAL_Driver
tushki7 0:60d829a0353a 50 * @{
tushki7 0:60d829a0353a 51 */
tushki7 0:60d829a0353a 52
tushki7 0:60d829a0353a 53 /** @addtogroup CRCEx CRCEx Extended HAL Module Driver
tushki7 0:60d829a0353a 54 * @{
tushki7 0:60d829a0353a 55 */
tushki7 0:60d829a0353a 56
tushki7 0:60d829a0353a 57 /* Exported types ------------------------------------------------------------*/
tushki7 0:60d829a0353a 58 /* Exported constants --------------------------------------------------------*/
tushki7 0:60d829a0353a 59 /** @defgroup CRCEx_Exported_Constants CRCEx Exported Constants
tushki7 0:60d829a0353a 60 * @{
tushki7 0:60d829a0353a 61 */
tushki7 0:60d829a0353a 62 /** @defgroup CRCEx_Input_Data_Inversion Input Data Inversion Modes
tushki7 0:60d829a0353a 63 * @{
tushki7 0:60d829a0353a 64 */
tushki7 0:60d829a0353a 65 #define CRC_INPUTDATA_INVERSION_NONE ((uint32_t)0x00000000)
tushki7 0:60d829a0353a 66 #define CRC_INPUTDATA_INVERSION_BYTE ((uint32_t)CRC_CR_REV_IN_0)
tushki7 0:60d829a0353a 67 #define CRC_INPUTDATA_INVERSION_HALFWORD ((uint32_t)CRC_CR_REV_IN_1)
tushki7 0:60d829a0353a 68 #define CRC_INPUTDATA_INVERSION_WORD ((uint32_t)CRC_CR_REV_IN)
tushki7 0:60d829a0353a 69
tushki7 0:60d829a0353a 70 #define IS_CRC_INPUTDATA_INVERSION_MODE(MODE) (((MODE) == CRC_INPUTDATA_INVERSION_NONE) || \
tushki7 0:60d829a0353a 71 ((MODE) == CRC_INPUTDATA_INVERSION_BYTE) || \
tushki7 0:60d829a0353a 72 ((MODE) == CRC_INPUTDATA_INVERSION_HALFWORD) || \
tushki7 0:60d829a0353a 73 ((MODE) == CRC_INPUTDATA_INVERSION_WORD))
tushki7 0:60d829a0353a 74 /**
tushki7 0:60d829a0353a 75 * @}
tushki7 0:60d829a0353a 76 */
tushki7 0:60d829a0353a 77
tushki7 0:60d829a0353a 78 /** @defgroup CRCEx_Output_Data_Inversion Output Data Inversion Modes
tushki7 0:60d829a0353a 79 * @{
tushki7 0:60d829a0353a 80 */
tushki7 0:60d829a0353a 81 #define CRC_OUTPUTDATA_INVERSION_DISABLED ((uint32_t)0x00000000)
tushki7 0:60d829a0353a 82 #define CRC_OUTPUTDATA_INVERSION_ENABLED ((uint32_t)CRC_CR_REV_OUT)
tushki7 0:60d829a0353a 83
tushki7 0:60d829a0353a 84 #define IS_CRC_OUTPUTDATA_INVERSION_MODE(MODE) (((MODE) == CRC_OUTPUTDATA_INVERSION_DISABLED) || \
tushki7 0:60d829a0353a 85 ((MODE) == CRC_OUTPUTDATA_INVERSION_ENABLED))
tushki7 0:60d829a0353a 86 /**
tushki7 0:60d829a0353a 87 * @}
tushki7 0:60d829a0353a 88 */
tushki7 0:60d829a0353a 89
tushki7 0:60d829a0353a 90 /** @defgroup CRCEx_Polynomial_Sizes Polynomial sizes to configure the IP
tushki7 0:60d829a0353a 91 * @{
tushki7 0:60d829a0353a 92 */
tushki7 0:60d829a0353a 93 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx)
tushki7 0:60d829a0353a 94 #define CRC_POLYLENGTH_32B ((uint32_t)0x00000000)
tushki7 0:60d829a0353a 95 #define CRC_POLYLENGTH_16B ((uint32_t)CRC_CR_POLYSIZE_0)
tushki7 0:60d829a0353a 96 #define CRC_POLYLENGTH_8B ((uint32_t)CRC_CR_POLYSIZE_1)
tushki7 0:60d829a0353a 97 #define CRC_POLYLENGTH_7B ((uint32_t)CRC_CR_POLYSIZE)
tushki7 0:60d829a0353a 98 #define IS_CRC_POL_LENGTH(LENGTH) (((LENGTH) == CRC_POLYLENGTH_32B) || \
tushki7 0:60d829a0353a 99 ((LENGTH) == CRC_POLYLENGTH_16B) || \
tushki7 0:60d829a0353a 100 ((LENGTH) == CRC_POLYLENGTH_8B) || \
tushki7 0:60d829a0353a 101 ((LENGTH) == CRC_POLYLENGTH_7B))
tushki7 0:60d829a0353a 102 #else
tushki7 0:60d829a0353a 103 #define CRC_POLYLENGTH_32B ((uint32_t)0x00000000)
tushki7 0:60d829a0353a 104 #define IS_CRC_POL_LENGTH(LENGTH) ((LENGTH) == CRC_POLYLENGTH_32B)
tushki7 0:60d829a0353a 105 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) */
tushki7 0:60d829a0353a 106 /**
tushki7 0:60d829a0353a 107 * @}
tushki7 0:60d829a0353a 108 */
tushki7 0:60d829a0353a 109
tushki7 0:60d829a0353a 110 /** @defgroup CRCEx_Polynomial_Size_Definitions CRC polynomial possible sizes actual definitions
tushki7 0:60d829a0353a 111 * @{
tushki7 0:60d829a0353a 112 */
tushki7 0:60d829a0353a 113 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx)
tushki7 0:60d829a0353a 114 #define HAL_CRC_LENGTH_32B 32
tushki7 0:60d829a0353a 115 #define HAL_CRC_LENGTH_16B 16
tushki7 0:60d829a0353a 116 #define HAL_CRC_LENGTH_8B 8
tushki7 0:60d829a0353a 117 #define HAL_CRC_LENGTH_7B 7
tushki7 0:60d829a0353a 118 #else
tushki7 0:60d829a0353a 119 #define HAL_CRC_LENGTH_32B 32
tushki7 0:60d829a0353a 120 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) */
tushki7 0:60d829a0353a 121 /**
tushki7 0:60d829a0353a 122 * @}
tushki7 0:60d829a0353a 123 */
tushki7 0:60d829a0353a 124
tushki7 0:60d829a0353a 125 /**
tushki7 0:60d829a0353a 126 * @}
tushki7 0:60d829a0353a 127 */
tushki7 0:60d829a0353a 128 /* Exported macro ------------------------------------------------------------*/
tushki7 0:60d829a0353a 129
tushki7 0:60d829a0353a 130 /** @defgroup CRCEx_Exported_Macros CRCEx Exported Macros
tushki7 0:60d829a0353a 131 * @{
tushki7 0:60d829a0353a 132 */
tushki7 0:60d829a0353a 133
tushki7 0:60d829a0353a 134 /**
tushki7 0:60d829a0353a 135 * @brief Set CRC output reversal
tushki7 0:60d829a0353a 136 * @param __HANDLE__ : CRC handle
tushki7 0:60d829a0353a 137 * @retval None.
tushki7 0:60d829a0353a 138 */
tushki7 0:60d829a0353a 139 #define __HAL_CRC_OUTPUTREVERSAL_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= CRC_CR_REV_OUT)
tushki7 0:60d829a0353a 140
tushki7 0:60d829a0353a 141 /**
tushki7 0:60d829a0353a 142 * @brief Unset CRC output reversal
tushki7 0:60d829a0353a 143 * @param __HANDLE__ : CRC handle
tushki7 0:60d829a0353a 144 * @retval None.
tushki7 0:60d829a0353a 145 */
tushki7 0:60d829a0353a 146 #define __HAL_CRC_OUTPUTREVERSAL_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(CRC_CR_REV_OUT))
tushki7 0:60d829a0353a 147
tushki7 0:60d829a0353a 148 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
tushki7 0:60d829a0353a 149 /**
tushki7 0:60d829a0353a 150 * @brief Set CRC non-default polynomial
tushki7 0:60d829a0353a 151 * @param __HANDLE__ : CRC handle
tushki7 0:60d829a0353a 152 * @param __POLYNOMIAL__: 7, 8, 16 or 32-bit polynomial
tushki7 0:60d829a0353a 153 * @retval None.
tushki7 0:60d829a0353a 154 */
tushki7 0:60d829a0353a 155 #define __HAL_CRC_POLYNOMIAL_CONFIG(__HANDLE__, __POLYNOMIAL__) ((__HANDLE__)->Instance->POL = (__POLYNOMIAL__))
tushki7 0:60d829a0353a 156 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
tushki7 0:60d829a0353a 157 /**
tushki7 0:60d829a0353a 158 * @}
tushki7 0:60d829a0353a 159 */
tushki7 0:60d829a0353a 160
tushki7 0:60d829a0353a 161 /* Exported functions --------------------------------------------------------*/
tushki7 0:60d829a0353a 162 /** @addtogroup CRCEx_Exported_Functions
tushki7 0:60d829a0353a 163 * @{
tushki7 0:60d829a0353a 164 */
tushki7 0:60d829a0353a 165
tushki7 0:60d829a0353a 166 /** @addtogroup CRCEx_Exported_Functions_Group1 Extended Initialization/de-initialization functions
tushki7 0:60d829a0353a 167 * @brief Extended Initialization and Configuration functions.
tushki7 0:60d829a0353a 168 * @{
tushki7 0:60d829a0353a 169 */
tushki7 0:60d829a0353a 170
tushki7 0:60d829a0353a 171 /* Initialization and de-initialization functions ****************************/
tushki7 0:60d829a0353a 172 HAL_StatusTypeDef HAL_CRCEx_Init(CRC_HandleTypeDef *hcrc);
tushki7 0:60d829a0353a 173 HAL_StatusTypeDef HAL_CRCEx_Input_Data_Reverse(CRC_HandleTypeDef *hcrc, uint32_t InputReverseMode);
tushki7 0:60d829a0353a 174 HAL_StatusTypeDef HAL_CRCEx_Output_Data_Reverse(CRC_HandleTypeDef *hcrc, uint32_t OutputReverseMode);
tushki7 0:60d829a0353a 175
tushki7 0:60d829a0353a 176 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
tushki7 0:60d829a0353a 177 HAL_StatusTypeDef HAL_CRCEx_Polynomial_Set(CRC_HandleTypeDef *hcrc, uint32_t Pol, uint32_t PolyLength);
tushki7 0:60d829a0353a 178 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
tushki7 0:60d829a0353a 179 /**
tushki7 0:60d829a0353a 180 * @}
tushki7 0:60d829a0353a 181 */
tushki7 0:60d829a0353a 182 /* Peripheral Control functions ***********************************************/
tushki7 0:60d829a0353a 183 /* Peripheral State and Error functions ***************************************/
tushki7 0:60d829a0353a 184 /**
tushki7 0:60d829a0353a 185 * @}
tushki7 0:60d829a0353a 186 */
tushki7 0:60d829a0353a 187
tushki7 0:60d829a0353a 188 /**
tushki7 0:60d829a0353a 189 * @}
tushki7 0:60d829a0353a 190 */
tushki7 0:60d829a0353a 191
tushki7 0:60d829a0353a 192 /**
tushki7 0:60d829a0353a 193 * @}
tushki7 0:60d829a0353a 194 */
tushki7 0:60d829a0353a 195
tushki7 0:60d829a0353a 196 #ifdef __cplusplus
tushki7 0:60d829a0353a 197 }
tushki7 0:60d829a0353a 198 #endif
tushki7 0:60d829a0353a 199
tushki7 0:60d829a0353a 200 #endif /* __STM32F0xx_HAL_CRC_EX_H */
tushki7 0:60d829a0353a 201
tushki7 0:60d829a0353a 202 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/