Debugger: Increase symbol length from 31 to 51 chars

This commit is contained in:
tomcw 2024-11-24 18:12:48 +00:00
parent 000b546613
commit 3fb6839458
2 changed files with 4 additions and 3 deletions

View File

@ -549,8 +549,8 @@ int ParseSymbolTable(const std::string & pPathFileName, SymbolTable_Index_e eSym
if (pPathFileName.empty())
return nSymbolsLoaded;
std::string sFormat1 = StrFormat( "%%x %%%ds", MAX_SYMBOLS_LEN ); // i.e. "%x %13s"
std::string sFormat2 = StrFormat( "%%%ds %%x", MAX_SYMBOLS_LEN ); // i.e. "%13s %x"
std::string sFormat1 = StrFormat( "%%x %%%ds", MAX_SYMBOLS_LEN ); // i.e. "%x %51s"
std::string sFormat2 = StrFormat( "%%%ds %%x", MAX_SYMBOLS_LEN ); // i.e. "%51s %x"
FILE *hFile = fopen( pPathFileName.c_str(), "rt" );

View File

@ -128,7 +128,8 @@
enum
{
// raised from 13 to 31 for Contiki
MAX_SYMBOLS_LEN = 31
// raised from 31 to 51 (GH#1342)
MAX_SYMBOLS_LEN = 51
};
// Bookmarks ______________________________________________________________________________________