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_LPC4088/sys_helper.h@0:60d829a0353a, 2015-04-11 (annotated)
- Committer:
- tushki7
- Date:
- Sat Apr 11 04:08:13 2015 +0000
- Revision:
- 0:60d829a0353a
A simple 128x32 LCD program to quickstart with LCD on ARM mbed IoT Starter kit. Mbed Application Shield is required if using FRDM-K64F platform.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
tushki7 | 0:60d829a0353a | 1 | #ifndef SYS_HELPER_H |
tushki7 | 0:60d829a0353a | 2 | #define SYS_HELPER_H |
tushki7 | 0:60d829a0353a | 3 | |
tushki7 | 0:60d829a0353a | 4 | #include <stdint.h> |
tushki7 | 0:60d829a0353a | 5 | |
tushki7 | 0:60d829a0353a | 6 | #ifdef __cplusplus |
tushki7 | 0:60d829a0353a | 7 | extern "C" { |
tushki7 | 0:60d829a0353a | 8 | #endif |
tushki7 | 0:60d829a0353a | 9 | |
tushki7 | 0:60d829a0353a | 10 | uint32_t __reserved_stack_size(); |
tushki7 | 0:60d829a0353a | 11 | |
tushki7 | 0:60d829a0353a | 12 | #ifdef __cplusplus |
tushki7 | 0:60d829a0353a | 13 | } |
tushki7 | 0:60d829a0353a | 14 | #endif |
tushki7 | 0:60d829a0353a | 15 | |
tushki7 | 0:60d829a0353a | 16 | #endif |