gbadev.org forum archive

This is a read-only mirror of the content originally found on forum.gbadev.org (now offline), salvaged from Wayback machine copies. A new forum can be found here.

DS Misc > dswifi from CVS

#115089 - tyraen - Fri Jan 12, 2007 10:53 pm

Hey all,

I managed to get it working fine, but during compilation it was complaining that it couldn't find DC_FlushAll(). I looked in the source but couldn't find it myself either. I ended up just commenting it out and stuff seems to work, and on my black DS homebrew wifi is much more impressive (it actually works more than 5% of the time now). :) I was actually disappointed earlier that nothing seemed to work very consistently, so I'm excited to try out more stuff compiled with the new version.

Too bad everything has to be recompiled, it'll be neat to see how well the OS works out! :)

#115114 - 0xtob - Sat Jan 13, 2007 1:34 am

DC_FlushAll() is a function from libnds. dswifi compiles fine without it, but when linking your project, this function is linked to dswifi. In order for this to work, make sure that -lnds9 comes after -ldswifi9 in the LIBS line in your arm9 Makefile. I would not recommend commenting it out, as this might cause unexpected behavior.

#115121 - tyraen - Sat Jan 13, 2007 3:27 am

I figured something probably wouldn't work as intended, I was just happy to actually have it working. :) I'll compile it again with the fixes you mentioned, thanks!