Let me preface this post with the fact that I've only been doing programming for the msp430 for just about 2 months. I have no prior experience with any embedded programming other than what I've learned working on this project.
I'm trying to add the RF API from the SimpliciTI package into my existing project. The project involves RS485 ICs. I enabled the interrupt on pin 6 (P2.3) from the ez430 board and connected it to pin 1 (R) on the RS485. I've successfully programmed two target boards to send data back and forth over the RS485 connection and the next step is to add a third target board to connect to one of the wired boards wirelessly. I'm getting the error described below when I go to download/debug...
Warning[w52]: More than one definition for the byte at address 0xffe6 in common segment INTVEC. It is defined in module "mrfi" as well as in module "main"
I know the problem is with conflicting "pragma vector" methods, mine and the MRFI's. How do I fix this issue? I need to "listen" on the RF end AND the wired end, but they're using the same ports. I appreciate any help. Thank you.