Need more NV memory
wishihad
Posts: 6
in AMX Hardware
How do I free up some NVmem on a duet master if I'm not using the duet side?
0
Comments
If you've got a lot that is required to be non volatile downsize their types to only use the max number of bytes you need. For example, if you're storing boolean values, only use a char rather than an int etc.
That helped but I'm still over:
Volatile Free : 41777544/67108864 (largest free block in bytes/max physical)
NonVolatile Free: -343856/523248 (program exceeded amount of NV memory)
Disk Free : 24342528/31715328 (bytes of free space/max physical)
Duet Memory Free : 0 (bytes)
Partition 1 - <UNKNOWN>
Partition 2 - <UNKNOWN>
Suggestions?
Kevin D.
I explicitly set everything to volatile unless it absolutely needs to be otherwise ... and I have found very few do. In fact, I generally wind up with a small amount of persistent, but never leave anything non-volatile at all.