Loading CCS C projects in MPLAB x

Thread Starter

Chandler Timm Doloriel

Joined Apr 5, 2018
54
Hi folks,

I made a programming project for PIC16F6798 in CCS C IDE. Now, I am wondering on how can I load the project in MPLAB. I know there is a CSS C compiler in MPLAB (and I installed it) but I cannot find a way to load a project made in CCS C IDE to MPLABx.

Regards,
Chandler
 
Last edited:

JavaLi

Joined Jun 24, 2017
8
Some directives and functions are different. Not being fully portable.
Example = CCS delay_us(250); ==> MPLAB XC8 or Hi-Tech C __delay_ms(250);
 
Last edited:
Top