Author Topic: Non-volatile nano memory where are you  (Read 6190 times)

cch1955

  • Full Member
  • Posts: 198
  • Automated Machine Systems Designer
    • View Profile
Non-volatile nano memory where are you
« on: August 18, 2011, 02:46:24 PM »
I understand the nano does not have EEPROM and that FRAM is optional. In the installation guide on page 1-7 it states:

Non-Volatile Data Storage
Integers (16-bit)
Strings (40 chars max)
1024 words

I need a small amount of nonvolitile memory for my application parameters and was planning on using the above 1K

How to do you read/write the 1K nonvolatile integer memory?

support

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3171
    • View Profile
    • Internet Programmable PLCs
Re:Non-volatile nano memory where are you
« Reply #1 on: August 18, 2011, 04:23:14 PM »
Please read Nano-10 User's Manual Page 1-8 regarding using the 1024 words of pseudo EEPROM.

Briefly speaking,  you would use the SAVE_EEP and LOAD_EEP as if they are EEPROM. But the data saved with SAVE_EEP are written into temporary static RAM location and will not be saved into non-volatile memory until you run the SETSYSTEM 252, 0 function which update all 1024 words to flash memory in a single action.
« Last Edit: August 19, 2011, 09:54:14 PM by support »
Email: support@triplc.com
Tel: 1-877-TRI-PLCS

cch1955

  • Full Member
  • Posts: 198
  • Automated Machine Systems Designer
    • View Profile
Re:Non-volatile nano memory where are you
« Reply #2 on: August 19, 2011, 07:48:12 AM »
very good. i believe this should work for me.