Hello,
I bought a Wifi RS21 module for my gadgeteer.
I use it with a FEZ Raptor.
The connection to my Wifi is working well with SID / PASSPHRASE.
But when I try to configure it as an AD-HOC spot, the network never appear in my wifi list.
Here is my code :
if (!my_wifi_RS21.Interface.IsOpen)
{
my_wifi_RS21.Interface.Open();
NetworkInterfaceExtension.AssignNetworkingStackTo(my_wifi_RS21.Interface);
}
my_wifi_RS21.Interface.StartAdHocHost("Gadgeteer", GHI.Premium.Net.SecurityMode.Open, "", 10);
my_wifi_RS21.Interface.NetworkInterface.EnableStaticIP("169.254.0.200", "255.255.0.0", "169.254.0.1");
my_wifi_RS21.UseStaticIP("169.254.0.200", "255.255.0.0", "169.254.0.1");
my_wifi_RS21.UseThisNetworkInterface();
my_wifi_RS21.Interface.WirelessConnectivityChanged += Interface_WirelessConnectivityChanged;
If anyone can help…