View previous topic :: View next topic |
Author |
Message |
santhosh kumar
Joined: 08 Jun 2010 Posts: 1 Location: CHENNAI,TAMILNADU,INDIA
|
pic16hv616 issue |
Posted: Tue Jun 08, 2010 10:54 pm |
|
|
I have to program the PIC16HV616 using CCS compiler as I am familiar with it. But the older version of the CCS which I am having is not supporting the PIC16HV616. So I downloaded the DEMO VERSION from your site and it seems that it supports the PIC16HV616. But when I programmed by creating an project and built, it shows the error as "UNKNOWN DEVICE TYPE". I have perfectly selected the PCM 14 BIT compiler option to build this project. Please look into the matter and suggest me the way to correct the error. Our management is ready to buy your full version software and the ICD programmer. Due to this backlog, they are in doubt whether this compiler would actually support the PIC16HV616 or not. So kindly guide me to rectify the error. _________________ SANTHOSH KUMAR |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Tue Jun 08, 2010 11:36 pm |
|
|
The demo only supports 4 PIC types. It does not support the 16HV616.
See the following page:
http://ccsinfo.com/ccsfreedemo.php
The PCM compiler in the current version does support the 16HV616.
I compiled the program below and it compiled OK.
Quote: |
0 Errors, 0 Warnings.
Loaded C:\Program Files\PICC\Projects\PCM_Test\pcm_test.cof.
BUILD SUCCEEDED: Tue Jun 08 22:38:19 2010
|
Code: |
#include <16HV616.h >
#fuses XT, NOWDT, NOPROTECT, BROWNOUT, PUT
#use delay(clock=4000000)
//===============================
void main()
{
while(1);
} |
|
|
|
|