Search found 40 matches

by PypeBros
Mon Nov 29, 2010 2:05 pm
Forum: DS/DSi Development
Topic: defaultArm7 r4239 fails to support wifiInitDefault() ?
Replies: 7
Views: 9928

Re: defaultArm7 r4239 fails to support wifiInitDefault() ?

What would the implication of an (accidental) extra call to irqInit() in that regards ? Iiuc, irqInit() is now part of the system initialisation code that is called before main(), right ? shouldn't it become a library-internal function to avoid chaos ? @wintermute: yes, clearly, trying to do ARM7 in...
by PypeBros
Mon Nov 29, 2010 10:50 am
Forum: DS/DSi Development
Topic: examples for consoleNew, consoleInit, etc?
Replies: 10
Views: 10047

Re: examples for consoleNew, consoleInit, etc?

But I also think there is another way. It depends on how you parse things. You could say that the documentation is less confusing if it confuses you less, right? And it would confuse you less if you ignored it (which you should do because documentation is out of date as soon as it is written). I th...
by PypeBros
Sun Nov 28, 2010 9:49 pm
Forum: DS/DSi Development
Topic: create 3d and include
Replies: 61
Views: 164186

Re: create 3d and include

afaik, Padrinator's mesh converter could do the job. I never did it myself, though, so you'll have to check there isn't some better tool out there... such as http://hackerpilot.org/dsblender.php
by PypeBros
Sun Nov 28, 2010 2:06 pm
Forum: DS/DSi Development
Topic: examples for consoleNew, consoleInit, etc?
Replies: 10
Views: 10047

Re: examples for consoleNew, consoleInit, etc?

i sure can write

Code: Select all

PrintConsole SecondConsole = * getDefaultConsole();
ConsoleInit(&SecondConsole, ...);
if that's the intent. That doesn't make the current documentation less confusing.
by PypeBros
Sun Nov 28, 2010 9:19 am
Forum: DS/DSi Development
Topic: defaultArm7 r4239 fails to support wifiInitDefault() ?
Replies: 7
Views: 9928

Re: defaultArm7 r4239 fails to support wifiInitDefault() ?

No, there's no PAlib around. I use libNTXM and converted my code to the version of NTXM that uses the fifo system appropriately, and I will have to integrate the "IPC_exec" function from GrizzlyAdams, but as far as I know, none of these were still effective in my tests. Clearly, my initial...
by PypeBros
Sat Nov 27, 2010 10:26 pm
Forum: DS/DSi Development
Topic: defaultArm7 r4239 fails to support wifiInitDefault() ?
Replies: 7
Views: 9928

defaultArm7 r4239 fails to support wifiInitDefault() ?

Hello, all. I'm trying to get some code working with the latest libnds 1.4.8 and dswifi-0.3.13, but for some reason, the initialisation of the wifi on ARM9 remains stuck. I did a fall back running the latest default_arm7 on the ARM7 side and the access point selection example on the ARM9, but even t...
by PypeBros
Sat Nov 27, 2010 9:43 pm
Forum: DS/DSi Development
Topic: examples for consoleNew, consoleInit, etc?
Replies: 10
Views: 10047

Re: examples for consoleNew, consoleInit, etc?

Actually, I was refering to doxygen-compatible comments found in the code itself. And the link http://libnds.devkitpro.org/a00107.html says: PrintConsole * consoleGetDefault (void) Gets a pointer to the default console (this should only be used when using a single console, other wise use consoleNew ...
by PypeBros
Fri Nov 26, 2010 4:54 pm
Forum: DS/DSi Development
Topic: create 3d and include
Replies: 61
Views: 164186

Re: create 3d and include

Iirc, you have an export script that would convert a blender model into an NDS call list... So I'd say blender is an option, but afaik, there are also plenty of 3DS (3D studio max, that most modelers can export to) loaders for DS around.
by PypeBros
Fri Nov 26, 2010 4:51 pm
Forum: DS/DSi Development
Topic: Beginners question about background and text
Replies: 2
Views: 3646

Re: Beginners question about background and text

the consoleInit may be doing more than I think, but, it looks like you're setting it on the layer #1 that you haven't enabled on videoMode() call.
by PypeBros
Thu Nov 25, 2010 12:08 pm
Forum: DS/DSi Development
Topic: examples for consoleNew, consoleInit, etc?
Replies: 10
Views: 10047

examples for consoleNew, consoleInit, etc?

Hello. I'm porting old code (libnds dating back from october 2007) that still used consoleInitDefault() in various subtle ways -- like calling twice to have the font available on both screens or changing which screen hosts the console at run time to the latest release ( 1.4.8 ) of libnds. Yet I'm mi...