Hello,
I have a Sentinel HL Pro with Driverless configuration.
I'm reading and writing in the memory using C# Api but the problem is that i can only access 112 bytes of memory.
- HaspFile file = _hasp.GetFile(HaspFileId.ReadWrite))
- int size = 48;
- file.FileSize(ref size);
- MessageBox.Show(size.ToString());
- byte[] buff = new byte[size];
- file.Read(buff, 0, size);
this is the way i access the file and this prints 112.
Reading Sentinel HL Pro specifications ( sentinel_specifications ):
Memory | |
---|---|
Protected Read / Write Memory | 112Bytes |
Read Only Memory (ROM) | 112Bytes |
Backwards Compatibility Memory | 112Bytes |
Additional memory (coming up in Driverless configuration) | 26KB |
So my question is: can i access these 26KB of memory though C# Api? Is this memory available to read and write though C# Api?
Best regards