• longjmp and setjmp use in interrupt
    Dear All I'm going to start to use this two functions to perform a goto in case of a while 1 loop is added into some section of the code. into the main I've if (setjmp (env) == 0) { blocked_loop...
  • Looking for source C code of setjmp and longjmp
    Hello, I am looking for the source C code of the standard functions setjmp and longjmp for ARM7. Does anyone known where I can find them? Thank you very much! Julian
  • How to use setjmp and longjmp to simuate watchdog timer for FX2 chip?
    Hi, Since FX2 does not have a watchdog timer, I am trying to simulate watchdog behavior using Timer 2 on chip. The timer setup seems to be functional, but when I try to execute longjmp(), FX2...
  • Interrupt servicing after longjmp instruction
    I'm using Keil compiler for 8051Warp uP. I would like to make a jump from an interrupt routine back to the main function, this way: main () { init_function(); if (setjmp(env)!=0) { //...