|
|
@@ -114,7 +114,20 @@ void DISPLAY__print_IMMEDIATE(
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+void DISPLAY__print_loop(DISPLAY_CURSOR_Y_CHARS_T DISPLAY_CURSOR_Y_CHARS_A,
|
|
|
+ char message,
|
|
|
+ int message_len,
|
|
|
+ DISPLAY__print_loop_ACTION_T DISPLAY__print_loop_ACTION_A
|
|
|
+) { //to print while in loop
|
|
|
+ static DISPLAY__print_loop_T DISPLAY__print_loop_A[5]={} ;
|
|
|
+ static int count = 0 ;
|
|
|
+ if(DISPLAY__print_loop_ACTION_A == DISPLAY__print_loop_ACTION_ADD) {
|
|
|
+ count ++ ;
|
|
|
+ DISPLAY__print_loop_A[count].DISPLAY_CURSOR_Y_CHARS_A = DISPLAY_CURSOR_Y_CHARS_A ;
|
|
|
+ DISPLAY__print_loop_A[count].message_len = message_len ;
|
|
|
+ memcpy(DISPLAY__print_loop_A[count].message, message, message_len );
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
|
|
|
void DISPLAY__print(
|