vote up 0 vote down star

I need a way to check for Wi-Fi routers/access points on my DS homebrew. I'm using PAlib.

flag

58% accept rate

1 Answer

vote up 1 vote down

i used the code from ds_wifi_test (which comes with the original dswifi library) when i tried to implement this. Basically, access points are scanned internally when you invoke Wifi_ScanMode(). You can then have the number of AP identified with Wifi_GetNumAP() and retrieve the information for the ith access point with Wifi_GetAPData(i,&data);

nbitems=Wifi_GetNumAP();
Wifi_AccessPoint ap;

for (int i=0;i<nbitems; i++) {
   if(Wifi_GetAPData(i+scrolltop,&ap)==WIFI_RETURN_OK)
      do_whatever_with(&ap);
}

I'm not aware of any "helper" functions through the PALib in this regards. All the PALib seems to have is a few "wrappers" to ease common tasks once a WFC setting has been defined (see day#20 tutorial)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.