Page 1 of 1

dsPIC33EP512GM710 UART Interrupt warning

Posted: Mon Apr 30, 2018 12:24 pm
by lexicon
When using the UART RX interrupt I see the following message during compilation:

In function '_U1RXInterrupt':
coff-cc1.exe: warning: _U1RXInterrupt PSV model not specified for '_U1RXInterrupt';
assuming 'auto_psv' this may affect latency

Not sure if this is significant or not as the interrupt works fine.

Re: dsPIC33EP512GM710 UART Interrupt warning

Posted: Mon Apr 30, 2018 5:28 pm
by Benj
Hello,

You can safely ignore the warning. It's just saying that interrupts are assigned vectors automatically. If you assign your own vectors then the latency (the time from interrupt being triggered to your interrupt macro being called) may be very slightly decreased or at least can be reordered so the highest priority interrupt has the lowest latency, but this is a very advanced feature which most users will not require.