Test Registers
Name | Start Address | Type | Access | Default |
TEST | 55100 | UINT32 | R | 1122867 |
TEST_UINT16 | 55110 | UINT16 | R/W | 17 |
TEST_UINT32 | 55120 | UINT32 | R/W | 1122867 |
TEST_INT32 | 55122 | INT32 | R/W | -2003195205 |
TEST_FLOAT32 | 55124 | FLOAT32 | R/W | -9999.0 |
TEST
A read of this test register should always return 0x00112233 or d1122867. If your software has the word swap quirk, you will incorrectly read 0x22330011 or 573767697. If your software has the address-1 quirk, a UINT16 (1-register) read from 55101 will incorrectly return 0x0011 (should read 0x2233).
TEST_UINT16
Write a value and read back to test UINT16 operation. Default is 0x0011 or d17.
TEST_UINT32
Write a value and read back to test UINT32 operation. Default is 0x00112233 or d1122867. If your software has the word swap quirk, the default will incorrectly read 0x22330011 or 573767697.
TEST_INT32
Write a value and read back to test INT32 operation. Default is 0x8899AABB or d-2003195205. If your software has the word swap quirk, the default will incorrectly read 0xAABB8899 or -1430550375.
TEST_FLOAT32
Write a value and read back to test FLOAT32 operation. Default is 0xC61C3C00 or -9999.0. If your software has the word swap quirk, the default will incorrectly read 0x3C00C61C or 0.00786.