Guys, I have a problem! Lets define it!
After making a call to certain c++ functions that say use an exception then the next interrupt that occurs cause the system to fail.
I would love suggestions to test.
The test routine is as follows:
start_timer(); for(int i = 0; i < 20; i++){ msleep(1000); led_toggle(0); } // works if I stop the timer before calling the c++ routines stop_timer(); templates(); // cause a failure with interrupts classes(); virtual_func(); name_space_test(); lists(); // cause a failure with interrupts exceptions(); // cause a failure with interrupts for(int i = 0; i < 20; i++){ msleep(1000); led_toggle(0); } while(1);