Removed spurious CRLF line ending that was causing problems with git

This commit is contained in:
Martin Budden 2016-07-27 09:04:35 +01:00
parent 3dd72e3398
commit 780aeca3f9
1 changed files with 2 additions and 2 deletions

View File

@ -330,7 +330,7 @@ uint8_t BL_WriteFlash(ioMem_t *pMem)
return BL_WriteA(CMD_PROG_FLASH, pMem, (40 / START_BIT_TIMEOUT_MS));
}
#endif
#endif
#if defined(USE_SERIAL_4WAY_BLHELI_BOOTLOADER) && defined(USE_FAKE_ESC)
#define FAKE_PAGE_SIZE 512
@ -877,7 +877,7 @@ uint8_t BL_PageErase(ioMem_t *pMem)
uint16_t address = pMem->D_FLASH_ADDR_H << 8 | pMem->D_FLASH_ADDR_L;
if (address + FAKE_PAGE_SIZE > FAKE_FLASH_SIZE)
return false;
memset(&fakeFlash[address], 0xFF, FAKE_PAGE_SIZE);
memset(&fakeFlash[address], 0xFF, FAKE_PAGE_SIZE);
return true;
}