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 #ifndef _NORDIC_GLOBAL_H_
tushki7 0:60d829a0353a 2 #define _NORDIC_GLOBAL_H_
tushki7 0:60d829a0353a 3
tushki7 0:60d829a0353a 4 /* There are no global defines in mbed, so we need to define */
tushki7 0:60d829a0353a 5 /* mandatory conditional compilation flags here */
tushki7 0:60d829a0353a 6 //#define NRF51
tushki7 0:60d829a0353a 7 #ifndef DEBUG_NRF_USER
tushki7 0:60d829a0353a 8 #define DEBUG_NRF_USER
tushki7 0:60d829a0353a 9 #endif
tushki7 0:60d829a0353a 10 #ifndef BLE_STACK_SUPPORT_REQD
tushki7 0:60d829a0353a 11 #define BLE_STACK_SUPPORT_REQD
tushki7 0:60d829a0353a 12 #endif
tushki7 0:60d829a0353a 13 #ifndef BOARD_PCA10001
tushki7 0:60d829a0353a 14 #define BOARD_PCA10001
tushki7 0:60d829a0353a 15 #endif
tushki7 0:60d829a0353a 16
tushki7 0:60d829a0353a 17 #endif