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:
parent
855b91ea69
commit
1e17dddd89
@ -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++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user