diff --git a/source/nanoFramework.System.Net/NetworkInformation/Wireless80211Configuration.cs b/source/nanoFramework.System.Net/NetworkInformation/Wireless80211Configuration.cs
index c3d5065..be5697e 100644
--- a/source/nanoFramework.System.Net/NetworkInformation/Wireless80211Configuration.cs
+++ b/source/nanoFramework.System.Net/NetworkInformation/Wireless80211Configuration.cs
@@ -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.
///
- AutoConnect = 0x04 & Enable,
+ AutoConnect = 0x04 | Enable,
///
/// Enables SmartConfig (if available) for this Wireless station.
/// This option forces enabling the Wireless station.
///
- SmartConfig = 0x08 & Enable,
+ SmartConfig = 0x08 | Enable,
};
#region native methods
diff --git a/source/nanoFramework.System.Net/NetworkInformation/WirelessAPConfiguration.cs b/source/nanoFramework.System.Net/NetworkInformation/WirelessAPConfiguration.cs
index 8fc2532..873eef3 100644
--- a/source/nanoFramework.System.Net/NetworkInformation/WirelessAPConfiguration.cs
+++ b/source/nanoFramework.System.Net/NetworkInformation/WirelessAPConfiguration.cs
@@ -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.
///
- AutoStart = 0x04 & Enable,
+ AutoStart = 0x04 | Enable,
///
/// The SSID for the Soft AP will be hidden.