Author |
Message |
Topic: JDM PIC programmer problem |
tsupuntu
Replies: 2
Views: 4133
|
Forum: General CCS C Discussion Posted: Mon Nov 27, 2006 11:05 am Subject: PULL UP V+ |
You should pull up V+12volt R 4.7k on MCLR pin then pull up 5 volt R4.7k with clk and data pin |
Topic: Controller Resetting |
tsupuntu
Replies: 4
Views: 5565
|
Forum: General CCS C Discussion Posted: Mon Nov 27, 2006 10:59 am Subject: EMI/EMC |
I think Reset from trace PCB of your.You should learning Electromagnetic EMI/EMC |
Topic: I have problem. if open a fan near counter .it reset to Zero |
tsupuntu
Replies: 4
Views: 4934
|
Forum: General CCS C Discussion Posted: Thu Oct 19, 2006 6:32 am Subject: thank a lot |
thank a lot
I use Capaciter 470uF for input "IC7805" and use 470uf for output
input =12 volt |
Topic: I have problem. if open a fan near counter .it reset to Zero |
tsupuntu
Replies: 4
Views: 4934
|
Forum: General CCS C Discussion Posted: Wed Oct 18, 2006 7:23 pm Subject: I have problem. if open a fan near counter .it reset to Zero |
I create counter show on seven segment. I use switching supply 12Volt then pass 7805 regulater for pic CPU (16f628a).
I have problem. if open a fan near counter .it reset to Zero or some time hang.
... |
Topic: Why digit show 1 and 7 light show is more than 2,3,4,5,6,8,0 |
tsupuntu
Replies: 1
Views: 3989
|
Forum: General CCS C Discussion Posted: Fri Oct 06, 2006 5:15 pm Subject: Why digit show 1 and 7 light show is more than 2,3,4,5,6,8,0 |
I used seven segment commom anote .
Why digit show 1 and 7 light show is more than 2,3,4,5,6,8,0 ? |
Topic: What is meaning of parameter "dow"? In driver Ds13 |
tsupuntu
Replies: 1
Views: 4313
|
Forum: General CCS C Discussion Posted: Mon Jun 05, 2006 6:33 am Subject: What is meaning of parameter "dow"? In driver Ds13 |
Driver Ds1302.c...
rtc_set_datetime(day, mth, year, dow, hour, min);
What is meaning of parameter "dow"?
please suggests me.
Thank in advance. |
Topic: How can i rotating the values of an an array |
tsupuntu
Replies: 8
Views: 13356
|
Forum: General CCS C Discussion Posted: Mon May 22, 2006 3:45 pm Subject: How can i rotating the values of an an array |
for (i=0;i<50;i++){
if(i==0) temp=message
reverse ways
for(i=49;i>=0;i--){
if(i==49)temp=message[i];
if(i<49 && i>0)mess[i]=message[i-1];
if(i==0)message[i]=temp;
} |
Topic: How can i rotating the values of an an array |
tsupuntu
Replies: 8
Views: 13356
|
Forum: General CCS C Discussion Posted: Sat May 20, 2006 12:18 pm Subject: How can i rotating the values of an an array |
for (i=0;i<50;i++){
if(i==0) temp=message[i];
if(i<49) message[i]=message[i+1];
if(i==49) message[i]=temp;
} ///// this method save ram because not array temp |
Topic: Why PIC can't read file witch name more than 8 charater |
tsupuntu
Replies: 10
Views: 12167
|
Forum: General CCS C Discussion Posted: Sat May 06, 2006 7:47 pm Subject: Thank |
I use driver mmc card for this WEB .Sorry, but I don't understand this. Can you be a bit more specific? Where did you find the software? Can you provide a link to it?
I use driver in link in library ... |
|