dbgmesg: show stackpointer

This commit is contained in:
Stefan `Sec` Zehl 2012-01-26 23:48:23 +01:00
parent 53bc25c0fa
commit 376db6a607
1 changed files with 6 additions and 0 deletions

View File

@ -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);