How many TABLE values are saved to Flash in the MC6N?

How many TABLE values are saved to Flash in the MC6N?

The default is none (only VRs are stored; FLASH_DATA = 0)

However 64000 will be stored when FLASH_DATA is set to 1

 

See the Trio BASIC help for FLASH_DATA.


    • Related Articles

    • MC_CONFIG vs Flash parameters

      All Motion Coordinators store the IP_ADDRESS, IP_NETMASK and IP_GATEWAY in Flash memory.  So there is usually no need to add them to the MC_CONFIG. There are some differences with other system parameters. MC4N-ECAT, MC4N-RTX, MC6N-ECAT, Flex-6 Nano ...
    • What is the life of Flash Data?

      In the MC206 and MC206X, the TABLE is in battery backed RAM. In the MC4/5/6 Flash memory is used but like a USB Flash-stick. The firmware creates a file store area on the Flash and maintains an index to the contents. The Flash memory used is much ...
    • Technical request for lifetime of flashROM (MC4N)

      The VRs are saved in a file system like a flash-stick so it is not erasing the flash every time you change a value. It uses many pages of flash. The expected lifetime is published on the Trio website on the specifiations pages. Compare Controllers ...
    • Set and Clear bits in TABLE values (Function)

      Here are 2 functions to set and clear a bit in a given TABLE value. ' functions to set and clear bits in TABLE FUNCTION set_table_bit(index, bit AS INTEGER)   DIM pattern AS INTEGER   pattern = 1 << bit   TABLE(index, TABLE(index) OR pattern) ENDFUNC ...
    • Moving CAM CSV/Text File to TABLE or VR's location

      The example attached is a Trio basic program that will extract the numerical values of each text file line and move the values into a TABLE or VR array. The program moves the data from the controllers on board memory but can be adjusted to move data ...