Hello, I am writing a firmware with keil uvision2 which has to use the UART. Unfortunately, I'm writing the jump table
XXXXX code (ISR_com) extrn code (ISR_Sudav, ... , ISR_Ep0in, ... ) ; Interrupt Vectors CSEG AT 23H SERIAL_AutoVector equ $ + 2 ljmp SERIAL_Jump_Table CSEG AT 43H USB_AutoVector equ $ + 2 ljmp USB_Jump_Table
Many thanks!
For a C implementation of the autovector scheme, be sure to check the following application note: http://www.keil.com/appnotes/docs/apnt_126.asp Jon