1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

Fix inconsistent CRLF/LF combinations (#6653)

These files had either CRLF, LFCR or LF or a mixture of it.
Consistently format them as git text files (unix style) with
trailing whitespace removed.
This commit is contained in:
Dirk Mueller 2019-10-19 18:10:41 +02:00 committed by Develo
parent 855b91ea69
commit 1e17dddd89
6 changed files with 429 additions and 429 deletions

View File

@ -27,7 +27,7 @@ void ICACHE_RAM_ATTR hexdump(const void *mem, uint32_t len, uint8_t cols) {
for(uint32_t i = 0; i < len; i++) { for(uint32_t i = 0; i < len; i++) {
if(i % cols == 0) { if(i % cols == 0) {
os_printf("\n[0x%08X] 0x%08X: ", (ptrdiff_t)src, i); os_printf("\n[0x%08X] 0x%08X: ", (ptrdiff_t)src, i);
yield(); yield();
} }
os_printf("%02X ", *src); os_printf("%02X ", *src);
src++; src++;