Author |
Message |
Topic: RS232 -> RS485 Conversion |
William H. Conley III
Replies: 7
Views: 9393
|
Forum: General CCS C Discussion Posted: Fri Nov 11, 2005 10:20 am Subject: RS232 -> RS485 Conversion |
Is the RS232 TTL ? |
Topic: I2c Bit Bang Write |
William H. Conley III
Replies: 1
Views: 4270
|
Forum: General CCS C Discussion Posted: Tue Nov 01, 2005 3:15 pm Subject: I2c Bit Bang Write |
Any one have some bit-bang i2c "Write" code...??
Thanks... |
Topic: Help With Newguy's Keypad Driver |
William H. Conley III
Replies: 4
Views: 6424
|
Forum: General CCS C Discussion Posted: Thu Oct 27, 2005 9:08 pm Subject: Help With Newguy's Keypad Driver |
It must suck having to talk to your self....
- Red Helmet Out |
Topic: This is very a basic question |
William H. Conley III
Replies: 3
Views: 8520
|
Forum: General CCS C Discussion Posted: Thu Oct 28, 2004 2:20 pm Subject: This is very a basic question |
Yes, that will work.
It will init the value to '0'
You can int the value to any number between 0 and 255
byte test = 2;
short tbit = 1;
long int testl = 123; |
Topic: Fuses Explained?!! Can anyone explain it? |
William H. Conley III
Replies: 3
Views: 9589
|
Forum: General CCS C Discussion Posted: Tue Oct 26, 2004 11:32 am Subject: Fuses Explained?!! Can anyone explain it? |
You may want to review the Microchip spec sheet for the respective processor....but,
WDT = Enable Watch Dog Timer.
NOWDT = Disable Watch Dog Timer.
PUT = Enable Power Up Timer,
NO PUT = Disab ... |
Topic: t6963c graphical lcd drivers |
William H. Conley III
Replies: 23
Views: 225973
|
Forum: Code Library Posted: Thu Jul 29, 2004 2:47 pm Subject: t6963c graphical lcd drivers |
do you need the "#device *=16" ? |
Topic: i2c sniffer??? |
William H. Conley III
Replies: 3
Views: 10238
|
Forum: General CCS C Discussion Posted: Fri Jun 11, 2004 1:15 pm Subject: i2c sniffer??? |
I have the unit made by mcc-us.com. I have many "over flow" error. The unit can't keep up with data.
-bc |
Topic: Need I2C examples |
William H. Conley III
Replies: 41
Views: 88390
|
Forum: General CCS C Discussion Posted: Tue Jun 08, 2004 1:04 pm Subject: Need I2C examples |
Good Luck.................... |
Topic: What PIC do I need? (USB to cell phone) |
William H. Conley III
Replies: 2
Views: 8934
|
Forum: General CCS C Discussion Posted: Tue Jun 08, 2004 1:03 pm Subject: What PIC do I need? (USB to cell phone) |
CCS has examples....
Most any pic would work, you need an exteranl USB driver.
I would recommend the PIC18FXXX
-bc |
Topic: Function won't return anything other than 0. |
William H. Conley III
Replies: 6
Views: 14500
|
Forum: General CCS C Discussion Posted: Fri Jun 04, 2004 10:20 am Subject: Function won't return anything other than 0. |
Try..........
if (!matchFound)
{
fprintf(DEBUGGER, "\nDid not match ");
fprintf(DEBUGGER, ATINFO.response);
fprintf(DEBUGGER, "\n");
return (FALSE);
}
else
... |
Topic: Interrupt input pin |
William H. Conley III
Replies: 2
Views: 9586
|
Forum: General CCS C Discussion Posted: Thu Jun 03, 2004 12:59 pm Subject: Interrupt input pin |
Whats your code look like? |
Topic: Conection pic-mobile phone |
William H. Conley III
Replies: 4
Views: 12697
|
Forum: General CCS C Discussion Posted: Thu Jun 03, 2004 11:00 am Subject: Conection pic-mobile phone |
Flow control is a way for your modem to tell another device to stop or start transmitting data. It can be hardware, (RTS/CTS) or software, (XON/XOFF).
If your modem requires flow control, or has fl ... |
Topic: Firmware protection |
William H. Conley III
Replies: 3
Views: 11599
|
Forum: General CCS C Discussion Posted: Thu Jun 03, 2004 8:32 am Subject: Firmware protection |
set the protect fuse:
#fuses HS,PROTECT,NOLVP....... |
Topic: Anyone tried 3.202? Seems to be really broken |
William H. Conley III
Replies: 6
Views: 14039
|
Forum: General CCS C Discussion Posted: Wed Jun 02, 2004 2:22 pm Subject: Anyone tried 3.202? Seems to be really broken |
"Kory"
You don't have to post your code on the forum but if you could email me what you have I maybe able to help. |
Topic: measuring pulswidth PIC16f84a.. |
William H. Conley III
Replies: 1
Views: 7446
|
Forum: General CCS C Discussion Posted: Wed Jun 02, 2004 9:15 am Subject: measuring pulswidth PIC16f84a.. |
CCS has examples on how to do this..... |
|