Whitespace cleanup

This commit is contained in:
Scott Lahteine 2020-09-06 22:51:53 -05:00 committed by Scott Lahteine
parent a1860ed680
commit 9172271c7f
7 changed files with 227 additions and 225 deletions

View File

@ -119,9 +119,10 @@ bool DLCache::store(uint32_t min_bytes /* = 0*/) {
dl_slot_size = max(dl_size, min_bytes); dl_slot_size = max(dl_size, min_bytes);
const uint32_t free_space = MAP::RAM_G_SIZE - dl_slot_addr; const uint32_t free_space = MAP::RAM_G_SIZE - dl_slot_addr;
if(dl_slot_size <= free_space) { if (dl_slot_size <= free_space) {
CLCD::mem_write_32(DL_FREE_ADDR, dl_slot_addr + dl_slot_size); CLCD::mem_write_32(DL_FREE_ADDR, dl_slot_addr + dl_slot_size);
} else { }
else {
dl_slot_addr = 0; dl_slot_addr = 0;
dl_slot_size = 0; dl_slot_size = 0;
dl_slot_used = 0; dl_slot_used = 0;
@ -138,7 +139,8 @@ bool DLCache::store(uint32_t min_bytes /* = 0*/) {
dl_slot_used = 0; dl_slot_used = 0;
save_slot(); save_slot();
return false; return false;
} else { }
else {
#if ENABLED(TOUCH_UI_DEBUG) #if ENABLED(TOUCH_UI_DEBUG)
SERIAL_ECHO_START(); SERIAL_ECHO_START();
SERIAL_ECHOPAIR ("Saving DL to RAMG cache, bytes: ", dl_slot_used); SERIAL_ECHOPAIR ("Saving DL to RAMG cache, bytes: ", dl_slot_used);