Re: [Flashforth-devel] USART2 INTERRUPT
Brought to you by:
oh2aun
From: <mik...@fl...> - 2014-11-10 17:54:27
|
After some investigation the mystery is solved. The code for redirecting the rx2complete interrupt was missing:-( This has been fixed in todays FF 5.0 version (10.11.2014). So now the interrupt numbers in the data sheet can be used. I also noticed that the Atmega 328 interrupts do not work at all. Now that is also fixed. BR Mike Here is the piece of code that was missing: .org BOOT_START + 0x64 rcall FF_ISR .endif +.if 0x66 < INT_VECTORS_SIZE +.org BOOT_START + 0x66 + rcall FF_ISR +.endif .if 0x68 < INT_VECTORS_SIZE .org BOOT_START + 0x68 rcall FF_ISR |