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 > WMB problems

#123562 - Yooser Naim - Thu Mar 29, 2007 3:38 am

I'm trying to setup the wireless multiboot application, and I'm having a few problems in the process. Here's what I've done so far:

-I checked my wireless card for compatibility; its on the list: Belkin F5D7010, v3001.

-I installed the latest custom driver; Nintendo DS appears in my device manager.

-I downloaded the Polarium demo from firefly's site and placed it into the data folder.

-I ran the wmb -data command from the wmb directory. A copy of the screen with the resulting errors follows:

    C:\WINDOWS\system32>cd c:\wmb

    C:\wmb>wmb -data polarium_demo_usa

    Nintendo DS - Wireless Multiboot Application - Version 1.5

    users.belgacom.net/nds/

    (c) 2005 Tim Schuerewegen

    Device Description = Ralink RT2560 Device
    Device Hardware ID = PCI\VEN_1814&DEV_0201&SUBSYS_701A1799&REV_01
    Device Location = PCI bus 5, device 0, function 0
    Driver Version = 1.0.0.8

    Loading "polarium_demo_usa"... error: could not load "header.bin"

    ds_multiboot_master_init() failed
    ds_multiboot_master() failed

    Press any key to exit...


Any ideas what I've done wrong, or what I've misunderstood about how WMB works?


Last edited by Yooser Naim on Thu Mar 29, 2007 6:57 pm; edited 1 time in total

#123565 - tepples - Thu Mar 29, 2007 3:46 am

"Could not load header.bin" means file not found. The fact that it displays "header.bin" instead of the actual filename is a bug in wmb.
_________________
-- Where is he?
-- Who?
-- You know, the human.
-- I think he moved to Tilwick.

#123627 - Yooser Naim - Thu Mar 29, 2007 6:54 pm

Ok, so I've setup everything correctly with the exception of how I load the file, but I have no idea about how to correct this.

Do you have to rename the file to anything specific? Does anything else have to be in the data folder along with the official demo? Am I using the -data parameter correctly?

Note: My WMB data folder has nothing else in it but the " 'polarium_demo_usa' Nintendo DS - Game Card Image."

#123637 - KeithE - Thu Mar 29, 2007 8:53 pm

Try this:

Code:
wmb -data polarium_demo_usa.nds

#123658 - Yooser Naim - Fri Mar 30, 2007 12:12 am

Well, KeithE, I thought I had done that, but I hadn't evidently. Now it works. The reason I had thought I had done it must have been that I believed the extension to be .ds not .nds. You would think that I would've been able to see it right on the file, but the file extension for .nds files doesn't show up on my computer anymore. Instead, the file type field says "Nintendo DS - Game Card Image." The first time I had seen this was when I downloaded the Polarium demo, cause before now .nds files showed up with nothing in the file type field and all the extensions were present. I even believed for a short period that it was a unique, 'official' file type; isn't that funny. Windows must have recognized the file type on the polarium demo and started hiding the extension. Otherwise, I probably wouldn't have made the mistake.

Oh well, just another embarassing post.

#123664 - chuckstudios - Fri Mar 30, 2007 1:11 am

Turn off noob mode so you can see extensions then.

#123665 - dantheman - Fri Mar 30, 2007 1:11 am

In Windows Explorer, go to Tools - Folder Options - "View" tab - uncheck the "Hide extensions for known filetypes" checkbox and hit OK. Then the extensions will always show up regardless of whether Windows can associate it with a program or not.

#123669 - Yooser Naim - Fri Mar 30, 2007 2:13 am

Thanks, dan.