It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center
                            
                        
                    
                
                                7年前关闭。
            
                    
我正在工作的项目如下:

我得到了ADuC7061的USART与PIC18F46j50 EUSART连接。 aduc7061连续发送信息,而pic18f通过其eusart0接收该信息。

现在的问题是,我必须将该信息存储在pic18的eeprom中,然后在经过一些操作后将其显示在128x64图形显示器上。

最佳答案

PIC18F46J50没有集成的EEPROM存储器。您有两种选择:


使用包含EEPROM存储器的PIC。有关产品选择表,请参见http://www.microchip.com/ParamChartSearch/chart.aspx?branchID=1004&mid=10&lang=en&pageId=74
使用程序闪存。与EEPROM相比,它具有一些缺点,例如最大写入周期数较少,并且仅按组擦除,但根据您的要求可能就足够了。另见Emulating Data EEPROM for PIC18 and PIC24 Microcontrollers

关于c - PIC18F46J50 EEPROM读/写,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14809846/

10-12 14:47