|
Re: InterruptVectorLow error when we compile
You have somehow added two copies of the file user_routines_fast.c to your project. The error you're getting means you're attempting to define InterruptVectorLow twice.
In MPLAB look at the project file list (the window labeled "FrcCode.mcw") to see if you have the "user_routines_fast.c" file listed twice.
You can also do a search (Project -> Find in Project Files...) for InterruptVectorLow to see all the places it's getting declared.
__________________
"Rationality is our distinguishing characteristic - it's what sets us apart from the beasts." - Aristotle
Last edited by Mark McLeod : 02-02-2005 at 19:36.
|