You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Creates a command message to enable ADC channels using a binary string.
319
+
/// Creates a command message to enable ADC channels using a decimal bitmask.
320
320
/// </summary>
321
-
/// <param name="channelSetString">A binary string where each character represents a channel (0 = disabled, 1 = enabled), right-to-left. For example, "0001010100" enables channels 2, 4, and 6.</param>
321
+
/// <param name="channelSetString">A decimal integer string representing a bitmask where each bit enables a channel. For example, "84" (0b1010100) enables channels 2, 4, and 6.</param>
322
322
/// <remarks>
323
-
/// The binary string is read from right to left, where position 0 is the rightmost bit:
324
-
/// - Position 0: Channel 0
325
-
/// - Position 1: Channel 1
326
-
/// - Position 2: Channel 2
323
+
/// The firmware parses this value as a decimal integer and interprets it as a bitmask:
0 commit comments