interrupt message information

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

interrupt message information

ソリューションへジャンプ
1,796件の閲覧回数
epl
Contributor I

*** UNHANDLED INTERRUPT ***
Vector #: 11  0xb
Offset  : 44  0x2c
Task Id: 0x10001 Td_ptr 0x2000529c Stack Frame: 0x2000652c
Interrupt_nesting level: 1   PC: 0x30000006   SR: 0x2600

 

what is the meaning of those parameters? This message is printed when calling _usb_device_recv_data() function.

 

Thanks in advanced!

ラベル(1)
タグ(1)
0 件の賞賛
返信
1 解決策
903件の閲覧回数
JuroV
NXP Employee
NXP Employee

Hi,

 

first of all, it is out of scope and useless now to decode the text with really high probability. You probable wrote something out of RAM (you dont handle RAM properly) or your stack overflew.

 

To be complete, I explain the text:

*** UNHANDLED INTERRUPT *** <--- unhandled interrupt occured (unhandled in the term MQX kernel does not handle it
Vector #: 11  0xb <--- vector of unhandled interrupt (probably something like zero dividing, illegal instruction etc.)
Offset  : 44  0x2c <--- ISR vector table address
Task Id: 0x10001 Td_ptr 0x2000529c Stack Frame: 0x2000652c <--- information in which task's context it happened
Interrupt_nesting level: 1   PC: 0x30000006   SR: 0x2600 <--- if it happened in ISR context, then the information about ISR's nested, program counter and status register

元の投稿で解決策を見る

0 件の賞賛
返信
1 返信
904件の閲覧回数
JuroV
NXP Employee
NXP Employee

Hi,

 

first of all, it is out of scope and useless now to decode the text with really high probability. You probable wrote something out of RAM (you dont handle RAM properly) or your stack overflew.

 

To be complete, I explain the text:

*** UNHANDLED INTERRUPT *** <--- unhandled interrupt occured (unhandled in the term MQX kernel does not handle it
Vector #: 11  0xb <--- vector of unhandled interrupt (probably something like zero dividing, illegal instruction etc.)
Offset  : 44  0x2c <--- ISR vector table address
Task Id: 0x10001 Td_ptr 0x2000529c Stack Frame: 0x2000652c <--- information in which task's context it happened
Interrupt_nesting level: 1   PC: 0x30000006   SR: 0x2600 <--- if it happened in ISR context, then the information about ISR's nested, program counter and status register

0 件の賞賛
返信