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