==== GetVal ====
Get value of a user-defined memory cell
=== Description ===
GetVal( address )
Fetch 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 |
=== Return value ===
Returns the 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