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_LPC15xx.h
tushki7 0:60d829a0353a 3 * @brief CMSIS Cortex-M3 Device System Header File for
tushki7 0:60d829a0353a 4 * NXP LPC15xx Device Series
tushki7 0:60d829a0353a 5 * @version V1.00
tushki7 0:60d829a0353a 6 * @date 19. July 2013
tushki7 0:60d829a0353a 7 *
tushki7 0:60d829a0353a 8 * @note
tushki7 0:60d829a0353a 9 * Copyright (C) 2013 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_LPC15xx_H
tushki7 0:60d829a0353a 27 #define __SYSTEM_LPC15xx_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 /** @addtogroup LPC15xx_System
tushki7 0:60d829a0353a 36 * @{
tushki7 0:60d829a0353a 37 */
tushki7 0:60d829a0353a 38
tushki7 0:60d829a0353a 39 extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
tushki7 0:60d829a0353a 40
tushki7 0:60d829a0353a 41
tushki7 0:60d829a0353a 42 /**
tushki7 0:60d829a0353a 43 * Initialize the system
tushki7 0:60d829a0353a 44 *
tushki7 0:60d829a0353a 45 * @param none
tushki7 0:60d829a0353a 46 * @return none
tushki7 0:60d829a0353a 47 *
tushki7 0:60d829a0353a 48 * @brief Setup the microcontroller system.
tushki7 0:60d829a0353a 49 * Initialize the System.
tushki7 0:60d829a0353a 50 */
tushki7 0:60d829a0353a 51 extern void SystemInit (void);
tushki7 0:60d829a0353a 52
tushki7 0:60d829a0353a 53 /**
tushki7 0:60d829a0353a 54 * Update SystemCoreClock variable
tushki7 0:60d829a0353a 55 *
tushki7 0:60d829a0353a 56 * @param none
tushki7 0:60d829a0353a 57 * @return none
tushki7 0:60d829a0353a 58 *
tushki7 0:60d829a0353a 59 * @brief Updates the SystemCoreClock with current core Clock
tushki7 0:60d829a0353a 60 * retrieved from cpu registers.
tushki7 0:60d829a0353a 61 */
tushki7 0:60d829a0353a 62 extern void SystemCoreClockUpdate (void);
tushki7 0:60d829a0353a 63
tushki7 0:60d829a0353a 64 #ifdef __cplusplus
tushki7 0:60d829a0353a 65 }
tushki7 0:60d829a0353a 66 #endif
tushki7 0:60d829a0353a 67
tushki7 0:60d829a0353a 68 /**
tushki7 0:60d829a0353a 69 * @}
tushki7 0:60d829a0353a 70 */
tushki7 0:60d829a0353a 71
tushki7 0:60d829a0353a 72 #endif /* __SYSTEM_LPC15xx_H */