WriteMemory
|
![]() ![]() ![]() |
|
[in] unsigned int* addr
|
Starting address in the camera bootstrap address space.
|
|
[in] unsigned int* pAddr
|
Pointer to a buffer that contains the data to be written.
|
|
[in] unsigned int size
|
Size of memory to write in bytes.
|
S_OK
|
Success
|
E_FAIL
|
Failure
|
E_NOINTERFACE
|
Bootstrap address does not exist
|
|
CString str;
|
unsigned char LUT[256];
|
for (int i=0; i<256; i++)
|
LUT[i]=i;
|
m_pCamera->WriteMemory(0xF100,LUT,256)
|