-2

The project i am working is as below:

I got ADuC7061's USART is connected with PIC18F46j50 EUSART. the aduc7061 continously transmits an information and the pic18f receives that information through its eusart0.

Now the question is that I have to store that information on pic18's eeprom and then display that information after some manipulation onto 128x64 graphics display.

Lundin
  • 195,001
  • 40
  • 254
  • 396
akumar
  • 49
  • 1
  • 9

1 Answers1

1

The PIC18F46J50 does not have integrated EEPROM memory. You have two alternatives:

Andreas Fester
  • 36,091
  • 7
  • 95
  • 123
  • Is it possible to display the received value through EUSART on display without being storing on flash memory ? – akumar Feb 11 '13 at 10:48
  • Sure - you can store the data in RAM and process it from there – Andreas Fester Feb 11 '13 at 10:53
  • Can you tell me how can I do this? I am new to PIC mic. Cheers – akumar Feb 11 '13 at 11:04
  • I fear this is out-of-scope on StackOverflow :) You should browse through the MicroChip web site for application notes, use google to find additional information and then get started. Once you have some code and are stuck, come back to SO and post your concrete question. Generally, it should not be that difficult: Read the data from the USART, store it in RAM, use some conversions to convert the data into a readable ASCII string and send it to your display. I would start with the display, to be able to also use it for debug output. – Andreas Fester Feb 11 '13 at 11:09