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 * @file system_LPC11Uxx.h
tushki7 0:60d829a0353a 3 * @brief CMSIS Cortex-M0 Device Peripheral Access Layer Header File
tushki7 0:60d829a0353a 4 * for the NXP LPC11Uxx Device Series
tushki7 0:60d829a0353a 5 * @version V1.10
tushki7 0:60d829a0353a 6 * @date 24. November 2010
tushki7 0:60d829a0353a 7 *
tushki7 0:60d829a0353a 8 * @note
tushki7 0:60d829a0353a 9 * Copyright (C) 2009-2010 ARM Limited. All rights reserved.
tushki7 0:60d829a0353a 10 *
tushki7 0:60d829a0353a 11 * @par
tushki7 0:60d829a0353a 12 * ARM Limited (ARM) is supplying this software for use with Cortex-M
tushki7 0:60d829a0353a 13 * processor based microcontrollers. This file can be freely distributed
tushki7 0:60d829a0353a 14 * within development tools that are supporting such ARM based processors.
tushki7 0:60d829a0353a 15 *
tushki7 0:60d829a0353a 16 * @par
tushki7 0:60d829a0353a 17 * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
tushki7 0:60d829a0353a 18 * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
tushki7 0:60d829a0353a 19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
tushki7 0:60d829a0353a 20 * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
tushki7 0:60d829a0353a 21 * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
tushki7 0:60d829a0353a 22 *
tushki7 0:60d829a0353a 23 ******************************************************************************/
tushki7 0:60d829a0353a 24
tushki7 0:60d829a0353a 25
tushki7 0:60d829a0353a 26 #ifndef __SYSTEM_LPC11Uxx_H
tushki7 0:60d829a0353a 27 #define __SYSTEM_LPC11Uxx_H
tushki7 0:60d829a0353a 28
tushki7 0:60d829a0353a 29 #ifdef __cplusplus
tushki7 0:60d829a0353a 30 extern "C" {
tushki7 0:60d829a0353a 31 #endif
tushki7 0:60d829a0353a 32
tushki7 0:60d829a0353a 33 #include <stdint.h>
tushki7 0:60d829a0353a 34
tushki7 0:60d829a0353a 35 extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
tushki7 0:60d829a0353a 36
tushki7 0:60d829a0353a 37
tushki7 0:60d829a0353a 38 /**
tushki7 0:60d829a0353a 39 * Initialize the system
tushki7 0:60d829a0353a 40 *
tushki7 0:60d829a0353a 41 * @param none
tushki7 0:60d829a0353a 42 * @return none
tushki7 0:60d829a0353a 43 *
tushki7 0:60d829a0353a 44 * @brief Setup the microcontroller system.
tushki7 0:60d829a0353a 45 * Initialize the System and update the SystemCoreClock variable.
tushki7 0:60d829a0353a 46 */
tushki7 0:60d829a0353a 47 extern void SystemInit (void);
tushki7 0:60d829a0353a 48
tushki7 0:60d829a0353a 49 /**
tushki7 0:60d829a0353a 50 * Update SystemCoreClock variable
tushki7 0:60d829a0353a 51 *
tushki7 0:60d829a0353a 52 * @param none
tushki7 0:60d829a0353a 53 * @return none
tushki7 0:60d829a0353a 54 *
tushki7 0:60d829a0353a 55 * @brief Updates the SystemCoreClock with current core Clock
tushki7 0:60d829a0353a 56 * retrieved from cpu registers.
tushki7 0:60d829a0353a 57 */
tushki7 0:60d829a0353a 58 extern void SystemCoreClockUpdate (void);
tushki7 0:60d829a0353a 59
tushki7 0:60d829a0353a 60 #ifdef __cplusplus
tushki7 0:60d829a0353a 61 }
tushki7 0:60d829a0353a 62 #endif
tushki7 0:60d829a0353a 63
tushki7 0:60d829a0353a 64 #endif /* __SYSTEM_LPC11Uxx_H */