/** * \file progP12.c - algorithms to program the PIC12 (12 bit word) family of microcontrollers * Copyright (C) 2009-2016 Alberto Maccioni * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA * or see */ #include "common.h" void Read12F5xx(int dim,int dim2) // read 12 bit PIC // dim=program size dim2=config size // vdd before vpp // CONFIG @ 0x7FF (upon entering in program mode) // OSCCAL in last memory location // 4 ID + reserved area beyond code memory { int k=0,z=0,i,j; char s[256],t[256]; if(dim2<4) dim2=4; sizeW=0x1000; if(memCODE_W) free(memCODE_W); memCODE_W=(WORD*)malloc(sizeof(WORD)*sizeW); if(saveLog){ OpenLogFile(); //"Log.txt" fprintf(logfile,"Read12F5xx(%d,%d)\n",dim,dim2); } unsigned int start=GetTickCount(); j=0; bufferU[j++]=SET_PARAMETER; bufferU[j++]=SET_T1T2; bufferU[j++]=1; //T1=1u bufferU[j++]=100; //T2=100u bufferU[j++]=SET_PARAMETER; bufferU[j++]=SET_T3; bufferU[j++]=2000>>8; bufferU[j++]=2000&0xff; bufferU[j++]=EN_VPP_VCC; //enter program mode bufferU[j++]=0x0; bufferU[j++]=SET_CK_D; bufferU[j++]=0x0; bufferU[j++]=EN_VPP_VCC; //VDD bufferU[j++]=0x1; bufferU[j++]=EN_VPP_VCC; //VDD+VPP bufferU[j++]=0x5; bufferU[j++]=NOP; bufferU[j++]=READ_DATA_PROG; //configuration word bufferU[j++]=INC_ADDR; // 7FF->000 bufferU[j++]=FLUSH; for(;jDIMBUF*2/4-3||i==dim+dim2-1){ //2 ins -> 4 ans bufferU[j++]=FLUSH; for(;j4){ PrintMessage1(strings[S_BKOsccal],memCODE_W[dim+4]); //"Backup OSCCAL: 0x%03X\r\n" } PrintMessage(strings[S_CodeMem]); //"\r\nCode memory\r\n" s[0]=0; int valid=0,empty=1; char* aux=(char*)malloc((dim/COL+1)*(16+COL*5)); aux[0]=0; for(i=0;i5){ aux=(char*)malloc((dim2/COL+1)*(16+COL*5)); aux[0]=0; s[0]=0; PrintMessage(strings[S_ConfigResMem]); //"\r\nConfig and reserved memory:\r\n" empty=1; for(i=dim;idim) OscAddr=dim-1; if(OscAddr==-1) use_BKosccal=use_osccal=0; if(sizeW<0x1000){ PrintMessage(strings[S_NoConfigW2]); //"Can't find CONFIG (0xFFF)\r\n" return; } if(saveLog){ OpenLogFile(); //"Log.txt" fprintf(logfile,"Write12F5xx(%d,%d)\n",dim,OscAddr); } for(i=0;i404 bufferU[j++]=READ_DATA_PROG; // backup OSCCAL } bufferU[j++]=NOP; //exit program mode bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x1; bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x0; bufferU[j++]=SET_CK_D; bufferU[j++]=0x0; bufferU[j++]=SET_PARAMETER; bufferU[j++]=SET_T3; bufferU[j++]=10000>>8; bufferU[j++]=10000&0xff; bufferU[j++]=WAIT_T3; bufferU[j++]=FLUSH; for(;jOscAddr+1){ //12F519 (Flash+EEPROM) bufferU[j++]=BULK_ERASE_PROG; // Bulk erase bufferU[j++]=WAIT_T3; // delay T3=10ms for(i=-1;i000 bufferU[j++]=SET_PARAMETER; bufferU[j++]=SET_T3; bufferU[j++]=2000>>8; //T3=2ms bufferU[j++]=2000&0xff; bufferU[j++]=FLUSH; for(;jOscAddr+1)?50:30); PrintMessage(strings[S_Compl]); //"completed\r\n" //****************** write code ******************** PrintMessage(strings[S_StartCodeProg]); //"Write code ... " PrintStatusSetup(); int dim1=dim; if(programID) dim1=dim+5; if(memCODE_W[dim+4]>=0xFFF) memCODE_W[dim+4]=BKosccal; //reload BKosccal if not present if(use_BKosccal) memCODE_W[OscAddr]=BKosccal; else if(use_osccal) memCODE_W[OscAddr]=osccal; for(i=k=w=0,j=0;i>8; //MSB bufferU[j++]=memCODE_W[i]&0xff; //LSB bufferU[j++]=BEGIN_PROG; bufferU[j++]=WAIT_T3; //Tprogram 2ms bufferU[j++]=END_PROG2; bufferU[j++]=WAIT_T2; //Tdischarge bufferU[j++]=READ_DATA_PROG; w++; } bufferU[j++]=INC_ADDR; if(j>DIMBUF-10||i==dim1-1){ PrintStatus(strings[S_CodeWriting],i*100/dim,i); //"Write: %d%%, ind. %03X" bufferU[j++]=FLUSH; for(;j=0xfff) k++; else if(bufferI[z]==LOAD_DATA_PROG&&bufferI[z+5]==READ_DATA_PROG){ if (memCODE_W[k]!=(bufferI[z+6]<<8)+bufferI[z+7]){ PrintMessage("\r\n"); PrintMessage3(strings[S_CodeWError],k,memCODE_W[k],(bufferI[z+6]<<8)+bufferI[z+7]); //"Error writing address %3X: written %03X, read %03X" err++; if(max_err&&err>max_err){ PrintMessage1(strings[S_MaxErr],err); //"Exceeded maximum number of errors (%d), write interrupted\r\n" PrintMessage(strings[S_IntW]); //"write interrupted" i=dim1; z=DIMBUF; } } k++; z+=8; } } j=0; if(saveLog){ fprintf(logfile,strings[S_Log8],i,i,k,k,err); //"i=%d, k=%d, errors=%d\n" } } } PrintStatusEnd(); err+=i-k; PrintMessage1(strings[S_ComplErr],err); //"completed, %d errors\r\n" //****************** write CONFIG ******************** PrintMessage(strings[S_ConfigW]); //"Write CONFIG ... " int err_c=0; bufferU[j++]=NOP; //exit program mode bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x1; bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x0; bufferU[j++]=SET_CK_D; bufferU[j++]=0x0; bufferU[j++]=WAIT_T3; //10 ms tra uscita e rientro prog. mode bufferU[j++]=WAIT_T3; bufferU[j++]=WAIT_T3; bufferU[j++]=WAIT_T3; bufferU[j++]=WAIT_T3; bufferU[j++]=EN_VPP_VCC; //enter program mode bufferU[j++]=0x1; bufferU[j++]=NOP; bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x5; bufferU[j++]=LOAD_DATA_PROG; //config word bufferU[j++]=memCODE_W[0xfff]>>8; //MSB bufferU[j++]=memCODE_W[0xfff]&0xff; //LSB bufferU[j++]=BEGIN_PROG; bufferU[j++]=WAIT_T3; //Tprogram 2ms bufferU[j++]=END_PROG2; bufferU[j++]=WAIT_T2; //Tdischarge bufferU[j++]=READ_DATA_PROG; bufferU[j++]=NOP; //exit program mode bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x1; bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x0; bufferU[j++]=SET_CK_D; bufferU[j++]=0x0; bufferU[j++]=FLUSH; for(;jDIMBUF-2){ PrintMessage("\r\n"); PrintMessage(strings[S_ConfigWErr2]); //"Error writing CONFIG" } PrintMessage1(strings[S_ComplErr],err_c); //"completed, %d errors\r\n" if(saveLog){ fprintf(logfile,strings[S_Log8],i,i,k,k,err); //"i=%d, k=%d, errors=%d\n" } sprintf(str,strings[S_EndErr],(stop-start)/1000.0,err,err!=1?strings[S_ErrPlur]:strings[S_ErrSing]); //"\r\nEnd (%.2f s) %d %s\r\n\r\n" PrintMessage(str); if(saveLog){ fprintf(logfile,str); CloseLogFile(); } PrintStatusClear(); //clear status report } void Write12C5xx(int dim,int dummy) { // write 12 bit PIC with OTP // dim=program size max~4300=10CC // vdd before vpp // CONFIG @ 0x7FF upon entering program mode // write: BEGIN_PROG (1000) + Tprogram 100us + END_PROG2 (1110); // 8 pulses + 11N overpulses int k=0,z=0,i,j; int err=0; WORD osccal=-1; int OscAddr=dim-1; if(FWVersion<0x800){ PrintMessage1(strings[S_FWver2old],"0.8.0"); //"This firmware is too old. Version %s is required\r\n" return; } if(sizeW<0x1000){ PrintMessage(strings[S_NoConfigW2]); //"Can't find CONFIG (0xFFF)\r\n" return; } if(saveLog){ OpenLogFile(); //"Log.txt" fprintf(logfile,"Write12C5xx(%d)\n",dim); } for(i=0;i>8; bufferU[j++]=10000&0xff; bufferU[j++]=WAIT_T3; bufferU[j++]=FLUSH; for(;j000 bufferU[j++]=READ_ADC; bufferU[j++]=FLUSH; for(;j>8; //MSB bufferU[j++]=memCODE_W[i]&0xff; //LSB bufferU[j++]=READ_DATA_PROG; bufferU[j++]=READ_ADC; bufferU[j++]=INC_ADDR; } else{ for(;memCODE_W[i]>=0xfff&&jNmax)Nmax=N; } if(memCODE_W[k]!=(bufferI[4]<<8)+bufferI[5]){ PrintMessage("\r\n"); PrintMessage3(strings[S_CodeWError],k,memCODE_W[k],(bufferI[4]<<8)+bufferI[5]); //"Error writing address %3X: written %03X, read %03X" err++; if(max_err&&err>max_err){ PrintMessage1(strings[S_MaxErr],err); //"Exceeded maximum number of errors (%d), write interrupted\r\n" PrintMessage(strings[S_IntW]); //"write interrupted" i=dim1; z=DIMBUF; } } k++; } else for(z=0;z=0xfff) k++; } if(saveLog){ fprintf(logfile,strings[S_Log8],i,i,k,k,err); //"i=%d, k=%d, errors=%d\n" } } PrintStatusEnd(); err+=i-k; PrintMessage1(strings[S_ComplErr],err); //"completed, %d errors\r\n" if(saveLog && xN) fprintf(logfile,"Programming pulses: avg %.1f, min %d, max %d\r\n",(double)Nt/xN,Nmin,Nmax); //****************** write CONFIG ******************** if(memCODE_W[0xfff]<0xfff){ PrintMessage(strings[S_ConfigW]); //"Write CONFIG ... " int err_c=0; bufferU[j++]=EN_VPP_VCC; //exit program mode bufferU[j++]=0x1; bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x0; bufferU[j++]=WAIT_T3; //10 ms bufferU[j++]=EN_VPP_VCC; //enter program mode bufferU[j++]=0x1; bufferU[j++]=EN_VPP_VCC; bufferU[j++]=0x5; bufferU[j++]=LOAD_DATA_PROG; //config word bufferU[j++]=memCODE_W[0xfff]>>8; //MSB bufferU[j++]=memCODE_W[0xfff]&0xff; //LSB bufferU[j++]=FLUSH; for(;j