|
@@ -1,17 +1,11 @@
|
|
|
#include "all-headers.h"
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
#include <stddef.h>
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
// http://esd.cs.ucr.edu/labs/interface/interface.html
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// PORT CONFIGURATION *
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// LCD D4 : Teensy D16
|
|
|
// LCD D5 : Teensy D15
|
|
|
// LCD D6 : Teensy D14
|
|
@@ -31,58 +25,40 @@ static const DigitalPort LCD_RS = DigitalPort::D18 ;
|
|
|
|
|
|
static const DigitalPort LCD_E = DigitalPort::D17 ;
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// UTILITY ROUTINES — ANY MODE *
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
|
|
|
static void driveHighE (void) {
|
|
|
digitalWrite (LCD_E, true) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void driveLowE (void) {
|
|
|
digitalWrite (LCD_E, false) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void driveHighRS (void) {
|
|
|
digitalWrite (LCD_RS, true) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void driveLowRS (void) {
|
|
|
digitalWrite (LCD_RS, false) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void setD4 (const bool inValue) {
|
|
|
digitalWrite (LCD_D4, inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void setD5 (const bool inValue) {
|
|
|
digitalWrite (LCD_D5, inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void setD6 (const bool inValue) {
|
|
|
digitalWrite (LCD_D6, inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void setD7 (const bool inValue) {
|
|
|
digitalWrite (LCD_D7, inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void programLcd4BitDataBusOutput (const uint8_t inValue) {
|
|
|
setD4 ((inValue & 0x01) != 0) ;
|
|
|
setD5 ((inValue & 0x02) != 0) ;
|
|
@@ -90,9 +66,7 @@ static void programLcd4BitDataBusOutput (const uint8_t inValue) {
|
|
|
setD7 ((inValue & 0x08) != 0) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// UTILITY ROUTINES — INIT_MODE
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
|
|
|
static void write4BitCommand_initMode (INIT_MODE_ const uint8_t inCommand) {
|
|
|
busyWaitDuring_initMode (MODE_ 1) ;
|
|
@@ -103,8 +77,6 @@ static void write4BitCommand_initMode (INIT_MODE_ const uint8_t inCommand) {
|
|
|
driveLowE () ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
static void write8bitCommand_initMode (INIT_MODE_ const uint8_t inCommand) {
|
|
|
busyWaitDuring_initMode (MODE_ 1) ;
|
|
|
driveLowRS () ;
|
|
@@ -119,9 +91,7 @@ static void write8bitCommand_initMode (INIT_MODE_ const uint8_t inCommand) {
|
|
|
driveLowE () ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// LCD INIT
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
|
|
|
static void setupLCD (INIT_MODE) {
|
|
|
//--- Step 1: Configure ports
|
|
@@ -171,13 +141,9 @@ static void setupLCD (INIT_MODE) {
|
|
|
write8bitCommand_initMode (MODE_ 0x0C) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
MACRO_INIT_ROUTINE (setupLCD) ;
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// UTILITY ROUTINES — USER MODE
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
|
|
|
static void write8bitCommand (USER_MODE_ const uint8_t inCommand) {
|
|
|
busyWaitDuring (MODE_ 1) ;
|
|
@@ -193,7 +159,6 @@ static void write8bitCommand (USER_MODE_ const uint8_t inCommand) {
|
|
|
driveLowE () ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
|
|
|
static void writeData (USER_MODE_ const uint8_t inData) {
|
|
|
busyWaitDuring (MODE_ 1) ;
|
|
@@ -209,15 +174,12 @@ static void writeData (USER_MODE_ const uint8_t inData) {
|
|
|
driveLowE () ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// PRINT ROUTINES — USER MODE
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
|
|
|
void clearScreen (USER_MODE) {
|
|
|
write8bitCommand (MODE_ 0x01) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
// Line 0 : 00 -> 19
|
|
|
// Line 1 : 64 -> 83
|
|
|
// Line 2 : 20 -> 39
|
|
@@ -230,8 +192,6 @@ void gotoLineColumn (USER_MODE_ const uint32_t inLine, const uint32_t inColumn)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printString (USER_MODE_ const char * inString) {
|
|
|
if (NULL != inString) {
|
|
|
while ('\0' != *inString) {
|
|
@@ -241,14 +201,10 @@ void printString (USER_MODE_ const char * inString) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printChar (USER_MODE_ const char inChar) {
|
|
|
writeData (MODE_ inChar) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printSpaces (USER_MODE_ const uint32_t inCount) {
|
|
|
uint32_t count = inCount ;
|
|
|
while (count > 0) {
|
|
@@ -257,8 +213,6 @@ void printSpaces (USER_MODE_ const uint32_t inCount) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printUnsigned (USER_MODE_ const uint32_t inValue) {
|
|
|
uint32_t divisor = 1000 * 1000 * 1000 ; // 10**9
|
|
|
uint32_t value = inValue ;
|
|
@@ -276,8 +230,6 @@ void printUnsigned (USER_MODE_ const uint32_t inValue) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printUnsigned64 (USER_MODE_ const uint64_t inValue) {
|
|
|
char buffer [20] ;
|
|
|
buffer [19] = '\0' ;
|
|
@@ -292,8 +244,6 @@ void printUnsigned64 (USER_MODE_ const uint64_t inValue) {
|
|
|
printString (MODE_ & buffer [idx]) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printSigned (USER_MODE_ const int32_t inValue) {
|
|
|
if (inValue < 0) {
|
|
|
printChar (MODE_ '-') ;
|
|
@@ -303,8 +253,6 @@ void printSigned (USER_MODE_ const int32_t inValue) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printHex1 (USER_MODE_ const uint32_t inValue) {
|
|
|
const uint32_t v = inValue & 0xF ;
|
|
|
if (v < 10) {
|
|
@@ -314,32 +262,23 @@ void printHex1 (USER_MODE_ const uint32_t inValue) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printHex2 (USER_MODE_ const uint32_t inValue) {
|
|
|
printHex1 (MODE_ inValue >> 4) ;
|
|
|
printHex1 (MODE_ inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printHex4 (USER_MODE_ const uint32_t inValue) {
|
|
|
printHex2 (MODE_ inValue >> 8) ;
|
|
|
printHex2 (MODE_ inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printHex8 (USER_MODE_ const uint32_t inValue) {
|
|
|
printHex4 (MODE_ inValue >> 16) ;
|
|
|
printHex4 (MODE_ inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|
|
|
-
|
|
|
void printHex16 (USER_MODE_ const uint64_t inValue) {
|
|
|
printHex8 (MODE_ (uint32_t) (inValue >> 32)) ;
|
|
|
printHex8 (MODE_ (uint32_t) inValue) ;
|
|
|
}
|
|
|
|
|
|
-//——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
|