Whitespace cleanup
This commit is contained in:
committed by
Scott Lahteine
parent
a1860ed680
commit
9172271c7f
@ -413,7 +413,7 @@ void AnycubicTFTClass::RenderCurrentFileList() {
|
||||
uint16_t selectedNumber = 0;
|
||||
SelectedDirectory[0] = 0;
|
||||
SelectedFile[0] = 0;
|
||||
ExtUI::FileList currentFileList;
|
||||
ExtUI::FileList currentFileList;
|
||||
|
||||
SENDLINE_PGM("FN "); // Filelist start
|
||||
|
||||
|
@ -117,11 +117,12 @@ bool DLCache::store(uint32_t min_bytes /* = 0*/) {
|
||||
// If we are allocating new space...
|
||||
dl_slot_addr = CLCD::mem_read_32(DL_FREE_ADDR);
|
||||
dl_slot_size = max(dl_size, min_bytes);
|
||||
|
||||
|
||||
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);
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
dl_slot_addr = 0;
|
||||
dl_slot_size = 0;
|
||||
dl_slot_used = 0;
|
||||
@ -138,7 +139,8 @@ bool DLCache::store(uint32_t min_bytes /* = 0*/) {
|
||||
dl_slot_used = 0;
|
||||
save_slot();
|
||||
return false;
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
#if ENABLED(TOUCH_UI_DEBUG)
|
||||
SERIAL_ECHO_START();
|
||||
SERIAL_ECHOPAIR ("Saving DL to RAMG cache, bytes: ", dl_slot_used);
|
||||
|
@ -51,7 +51,7 @@ class DLCache {
|
||||
|
||||
void load_slot() {load_slot(dl_slot_indx, dl_slot_addr, dl_slot_size, dl_slot_used);}
|
||||
void save_slot() {save_slot(dl_slot_indx, dl_slot_addr, dl_slot_size, dl_slot_used);}
|
||||
|
||||
|
||||
static void load_slot(uint8_t indx, uint32_t &addr, uint16_t &size, uint16_t &used);
|
||||
static void save_slot(uint8_t indx, uint32_t addr, uint16_t size, uint16_t used);
|
||||
|
||||
|
Reference in New Issue
Block a user