Tool/software: Code Composer Studio
Window 10 Pro 64-bit
CCS Version: 8.3.0.00009
I am having problems refactoring a project. I used "Rename" function in the project explorer and renamed header and source file. I get this error after when trying to compile:
"error #148: declaration is incompatible with ..."
Header : void HandleTP150_TP200ExtraData_IRQ(char,char);
Source: void HandleTP150_TP200ExtraData_IRQ(char cDataGr, char cDataNode)
Looking at the source and header file from the project viewer with file expanded it shows the function has char parameters in header signature and unsigned char in source signature. See pictures. I tried renaming other files and I get a log of these errors. What am I doing wrong?