Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,13 @@ public enum ConfigurationOptions : byte
/// Will auto connect when AP is available or after being disconnected.
/// This option forces enabling the Wireless station.
/// </summary>
AutoConnect = 0x04 & Enable,
AutoConnect = 0x04 | Enable,

/// <summary>
/// Enables SmartConfig (if available) for this Wireless station.
/// This option forces enabling the Wireless station.
/// </summary>
SmartConfig = 0x08 & Enable,
SmartConfig = 0x08 | Enable,
};

#region native methods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public enum ConfigurationOptions : byte
/// Will automatically start the Soft AP when CLR starts.
/// This option forces enabling the Wireless Soft AP.
/// </summary>
AutoStart = 0x04 & Enable,
AutoStart = 0x04 | Enable,

/// <summary>
/// The SSID for the Soft AP will be hidden.
Expand Down