ModuleAPI C# Version Developer's Guide
Read Tag Memory

ReadTagMemWords Method

Read memory area of a bank
  
Method Signature
  
public abstract ushort[] ReadTagMemWords(ModuleTech.TagFilter target, ModuleTech.Gen2.MemBank bank, int wordAddress, int wordCount)
  
Parameters
Parameter Description
target Tag filter, set as null if it is not necessary.
bank The bank to read.
wordAddress The starting address, in blocks, in the bank.
wordCount The number of blocks to read.
  
Return Value
The data read
 
Example
Read data of two blocks from the second block of TID bank.
  
ushort[] readdata = rdr.ReadTagMemWords(null, 2, MemBank.TID, 2);