Re: [U-Boot] Interrupts in uboot with ARM AT91SAM9 (V2)

2009-09-14 Thread Manuel Sahm
Hello, I´ve already inserted the following code: In at91sam9g20ek.c: void thread_test(void) { printf("RESET via INT\n"); } in function :static void at91sam9g20ek_macb_hw_init (void) { ... at91_sys_write(AT91_RSTC_MR, AT91_RSTC_KEY | AT91_RSTC_URSTIEN); // Reset Bit AT91_RSTC_URSTS at

Re: [U-Boot] Interrupts in uboot with ARM AT91SAM9 (V2)

2009-09-04 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:31 Thu 03 Sep , Manuel Sahm wrote: > Hello, > > I have to use interrupts in UBoot 1.3.4 - how could I enable them ? > > I have an AT91SAM9G20 - in ist header file I enable CONFIG_USE_IRQ und > uncomment the lines#ifdefc CONFIG_USE_IRQ #error #endif. > I inserted the lines: > #def