TS-4710 NVRAM

From embeddedTS Manuals
Revision as of 12:52, 27 February 2013 by Mark (talk | contribs) (Created page with "The RTC has an included 1KB NVRAM which can be accessed using tshwctl. <source lang=bash> tshwctl --nvram </source> This will return a format such as: nvram0=0xf7f8a73e ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The RTC has an included 1KB NVRAM which can be accessed using tshwctl.

tshwctl --nvram

This will return a format such as:

 nvram0=0xf7f8a73e
 nvram1=0x2fef5ae0
 nvram2=0x48ca4278
 ...
 nvram31=0x70544510

This breaks up the NVRAM into 32x 32-bit registers which can be accessed in bash. As this uses the name=value output, you can use "eval" for simple parsing:

eval `tshwctl --nvram`
echo $nvram2

From the above value, this would return 0x48ca4278. To set values, you can use environment variables:

nvram0=0x42 ts4700ctl --nvram

If you read back nvram0, this should now confirm the value is 0x42.