==== SetVal ==== Set value of a user-defined memory cell === Description === SetVal( address, value ) Set the value of one of the user defined memory cells. There are 512 32-bit cells available. The values are stored in NVM, so they will remain through power loss/reset. UPDATE since firmware 22070801: Expanded to 2048 cells. Only the first 512 are stored in NVM. === Parameters === | ''address'' | Address, 0-511 | | ''value'' | New value | === Return value === Returns the previous value of the cell. === Example usage === new x; SetVal(100, 4711); // Set cell with address 100 to value 4711 x = GetVal(100); // Read cell 100 // x now has the value 4711 NOTE: First appeared in firmware 21071901