Author |
Message |
Topic: How to write a Char constant in the EEPROM |
wrsalasr
Replies: 8
Views: 10211
|
Forum: General CCS C Discussion Posted: Mon Jun 22, 2009 10:28 am Subject: How to write a Char constant in the EEPROM |
I am use the hiperterminal to check the read, here is my code:
#include <16f877a.h>
#fuses XT,NOWDT,NOPROTECT,NOLVP,PUT,BROWNOUT
#use delay(clock=20M) ... |
Topic: How to write a Char constant in the EEPROM |
wrsalasr
Replies: 8
Views: 10211
|
Forum: General CCS C Discussion Posted: Mon Jun 22, 2009 9:47 am Subject: How to write a Char constant in the EEPROM |
Hi, I am use the internal EEPROM of Pic16f877a |
Topic: How to write a Char constant in the EEPROM |
wrsalasr
Replies: 8
Views: 10211
|
Forum: General CCS C Discussion Posted: Mon Jun 22, 2009 9:09 am Subject: How to write a Char constant in the EEPROM |
Hi, I want to write a char constant name
int i = 0;
char name[] = "Flux-564330";
void main() {
for (i = 0; i < 12; i++){
wr ... |
Topic: Does Anybody try EX_USB_SERIAL ? |
wrsalasr
Replies: 25
Views: 29009
|
Forum: General CCS C Discussion Posted: Tue Oct 09, 2007 11:35 pm Subject: Does Anybody try EX_USB_SERIAL ? |
Hi,
I am implementing a USB-RS232 converter, for this I am using ex_usb_serial example, when I send characters using the hyperteminal from COM1 to COM3 (virtual Com) it works fine but when I send ... |
|