-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Hexdump fix&update #7831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Hexdump fix&update #7831
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6394a63
hexdump() must be "C"; add ascii data in dump
d-a-v e607e57
remove previous version
d-a-v 5b7750a
style debug.cpp
d-a-v 50cdb91
fix per review
d-a-v 88fb8d4
Merge branch 'master' into hexdump
d-a-v 28cc351
mock: +ets_putc()
d-a-v File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,53 @@ | ||
/* | ||
debug.cpp - debug helper functions | ||
Copyright (c) 2015 Markus Sattler. All rights reserved. | ||
This file is part of the esp8266 core for Arduino environment. | ||
debug.cpp - debug helper functions | ||
Copyright (c) 2015 Markus Sattler. All rights reserved. | ||
This file is part of the esp8266 core for Arduino environment. | ||
|
||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
|
||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
|
||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#include "Arduino.h" | ||
#include "debug.h" | ||
#include "osapi.h" | ||
|
||
void ICACHE_RAM_ATTR hexdump(const void *mem, uint32_t len, uint8_t cols) { | ||
const uint8_t* src = (const uint8_t*) mem; | ||
os_printf("\n[HEXDUMP] Address: 0x%08X len: 0x%X (%d)", (ptrdiff_t)src, len, len); | ||
for(uint32_t i = 0; i < len; i++) { | ||
if(i % cols == 0) { | ||
os_printf("\n[0x%08X] 0x%08X: ", (ptrdiff_t)src, i); | ||
yield(); | ||
IRAM_ATTR | ||
void hexdump(const void *mem, uint32_t len, uint8_t cols) | ||
{ | ||
const char* src = (const char*)mem; | ||
os_printf("\n[HEXDUMP] Address: %p len: 0x%X (%d)", src, len, len); | ||
while (len > 0) | ||
{ | ||
uint32_t linesize = cols > len ? len : cols; | ||
os_printf("\n[%p] 0x%04x: ", src, src - (const char*)mem); | ||
for (uint32_t i = 0; i < linesize; i++) | ||
{ | ||
os_printf("%02x ", *(src + i)); | ||
} | ||
os_printf("%02X ", *src); | ||
src++; | ||
os_printf(" "); | ||
for (uint32_t i = linesize; i < cols; i++) | ||
{ | ||
os_printf(" "); | ||
} | ||
for (uint32_t i = 0; i < linesize; i++) | ||
{ | ||
unsigned char c = *(src + i); | ||
os_printf("%c", c >= 32 && c <= 127 ? c : '.'); | ||
} | ||
src += linesize; | ||
len -= linesize; | ||
yield(); | ||
} | ||
os_printf("\n"); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.