Get value of a user-defined memory cell
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.
address | Address, 0-511 |
Returns the value of the cell.
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