We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I am using Port 0 to write to an LCD and Port 1 to communicate over my RS485 network. The data on the RS485 is more important than writing to my screen. I can set my serial interrupt priority to high by setting PS = 1 but is there any way to set Port 1's priority higher than Port 0? I am using TI's MSC120Y5.
Thanks, Paul
any ISR can be set to any priority (1 of 2 in the 'traditional', 1 of 4 in many modern derivatives) there is (in no chip I know of) a 'port priority', the priorities are based on interrupt type.
Erik
Erik,
Again I have mislead you.
I understand there is no such thing as port priority. PS = 1 sets the serial interrupt at a high priority for both Port 0 and Port 1. I would like to know if there is anyway to set the serial interrupt generated by Port 1 higher than the serial interrupt generated by Port 0.