remove loading dots

This commit is contained in:
nino-porcino 2022-03-28 17:50:48 +02:00
parent 1ae7ed5ac5
commit a2105f88c6
5 changed files with 0 additions and 21 deletions

View File

@ -74,10 +74,6 @@ void comando_load_bas() {
byte data = receive_byte_from_MCU();
if(TIMEOUT) return;
*token_ptr++ = data;
#ifdef LOADING_DOTS
if(((byte)t) == 0) woz_putc('.');
#endif
}
// decrease by one for display result
@ -142,9 +138,6 @@ void comando_load_bas() {
}
token_ptr++;
#ifdef LOADING_DOTS
if(((byte)t) == 0) woz_putc('.');
#endif
}
bas_file_info();

View File

@ -38,10 +38,6 @@ void comando_read() {
byte data = receive_byte_from_MCU();
if(TIMEOUT) return;
*token_ptr++ = data;
#ifdef LOADING_DOTS
if(((byte)t) == 0) woz_putc('.');
#endif
}
// decrease by one for display result

View File

@ -66,10 +66,6 @@ void comando_save_bas() {
for(token_ptr=*BASIC_LOMEM; token_ptr<(byte *)tmpword; token_ptr++) {
send_byte_to_MCU(*token_ptr);
if(TIMEOUT) return;
#ifdef LOADING_DOTS
if(((byte)token_ptr) == 0) woz_putc('.');
#endif
}
// get second response

View File

@ -42,10 +42,6 @@ void comando_write() {
for(word t=0;t<tmpword;t++) {
send_byte_to_MCU(*token_ptr++);
if(TIMEOUT) return;
#ifdef LOADING_DOTS
if(((byte)t) == 0) woz_putc('.');
#endif
}
// get second response

View File

@ -197,8 +197,6 @@ void send_word_to_mcu() {
send_byte_to_MCU( *((byte *)(&tmpword+1)) );
}
// #define LOADING_DOTS 0
#include "console.h"
void main() {