你好!msp4305739 例程只有 FRAM写操作,请问如何FRAM读操作,谢谢!
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
和写入程序相对的,您可以设置一个指针变量(任意大小- byte (8 bits), word (16 bits))并为其分配要读取的地址。
如下
unsigned int *pointer;
unsigned int data;
void main()
{
pointer = (unsigned int *)0x1800; // address to read
data = *pointer; // data to read
while(1);
}