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.
mbed/TARGET_LPC1549/cmsis.h@1:eb68c94a8ee5, 2015-04-12 (annotated)
- 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?
User | Revision | Line number | New contents of line |
---|---|---|---|
tushki7 | 0:60d829a0353a | 1 | /* mbed Microcontroller Library - CMSIS |
tushki7 | 0:60d829a0353a | 2 | * Copyright (C) 2009-2011 ARM Limited. All rights reserved. |
tushki7 | 0:60d829a0353a | 3 | * |
tushki7 | 0:60d829a0353a | 4 | * A generic CMSIS include header, pulling in LPC8xx specifics |
tushki7 | 0:60d829a0353a | 5 | */ |
tushki7 | 0:60d829a0353a | 6 | |
tushki7 | 0:60d829a0353a | 7 | #ifndef MBED_CMSIS_H |
tushki7 | 0:60d829a0353a | 8 | #define MBED_CMSIS_H |
tushki7 | 0:60d829a0353a | 9 | |
tushki7 | 0:60d829a0353a | 10 | #include "LPC15xx.h" |
tushki7 | 0:60d829a0353a | 11 | #include "cmsis_nvic.h" |
tushki7 | 0:60d829a0353a | 12 | |
tushki7 | 0:60d829a0353a | 13 | #endif |