diff --git a/firmware/l0dable/dbgmesh.c b/firmware/l0dable/dbgmesh.c index 7da067c..0506cb7 100644 --- a/firmware/l0dable/dbgmesh.c +++ b/firmware/l0dable/dbgmesh.c @@ -83,6 +83,7 @@ void m_time(void){ struct tm* tm; int select=0; char c[2]={0,0}; + int sp; getInputWaitRelease(); delayms(100); while(1) { @@ -133,6 +134,11 @@ void m_time(void){ lcdNl(); lcdPrint("Inc:"); lcdPrintInt(meshincctr); + + lcdPrint(" SP:"); + __asm( "mov %0, sp\n" : "=r" (sp) :); + lcdPrint(IntToStrX(sp,4)); + lcdNl(); lcdPrint("Nice:"); lcdPrintInt(meshnice);