Hi @LyingCake
The output of the Simulink block represents the address where the converted data, of type uint16, will be stored. ADC results of all channels of the group selected in the block mask are stored in a buffer addressed with that pointer.
For being able to store the data inside a variable, you could use a Data Store Memory Simulink block, that, depending on the number of channels your group contains, can be declared with different sizes. For example, I have declared the variable Group0, for the case in which you have 2 channels, with its initial value set as illustrated below:

Then, inside the Simulink application, connect the block output to a Data Store Write block, for enabling the converted data to be stored inside the Group0 variable (the naming represents just an example).

Now, you should be able to access both values, corresponding to the two channels that your group contains, each of them being represented by Group0[0] and Group0[1] respectively. You could use FreeMASTER for inspecting the values corresponding to each channel.

Hope this helps,
Irina