Part Number: MSP430FR2355
Hi all,
Working on one of my scripts and CCS has started giving me the error "[E0300 Symbol TI__int33 has already been defined" for specifically line 16 in my code. Previously I've had no issues with this, and then I tried commenting out the line to troubleshoot whether or not the error disappears, it doesn't. Can anyone provide me with some guidance as to what would be causing this? For context this is part of a MODBUS routine.
Thanks in advance!!
/** * main.c */ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #include <msp430.h> #include <string.h> #include <stdio.h> // Modbus Function Codes #define READ_COIL_STATUS 0x01 #define READ_INPUT_STATUS 0x02 #define READ_HOLDING_REGISTER 0x03 #define READ_INPUT_REGISTER 0x04 #define WRITE_SINGLE_COIL 0X05 #define WRITE_SINGLE_REGISTER 0x06