Tagged Questions

The DS is a portable gaming console from Nintendo.

learn more… | top users | synonyms

23
votes
8answers
5k views

Programming on a Nintendo DS

I was reading this answer previously and it got me interested in purchasing a Nintendo DS Lite for learning to program embedded devices. Before I go out and splurge on a DS I had a few questions: ...
6
votes
8answers
3k views

Is the .NET Micro Framework a good way to start with embedded programming?

How does the .NET Micro Framework with a dev board compare to something like an Arduino, or Nintendo DS for starting with embedded programming?
5
votes
1answer
178 views

Any way to execute DS code from cartridge?

From what I know, code to run on the DS has to be loaded into RAM, thus taking from the already-restrictive 4M. Is there any way to run DS code directly from the image?
4
votes
2answers
542 views

Weird striping in tile graphics on Nintendo DS

I'm working on a pong game for the Nintendo DS. I'm using libnds to set things up and I've come across a very strange behaviour. So far I've only tried it out in emulators, but I use three different ...
4
votes
3answers
1k views

Alpha blending sprites in Nintendo DS Homebrew

I'm trying to alpha blend sprites and backgrounds with devkitPro (including libnds, libarm, etc). Does anyone know how to do this?
3
votes
1answer
138 views

Drawing an image on subscreen of nds

I am totally new to libdns. I try to change the sample Graphics\Backgrounds\256_color_bmp to display the background on the subscreen. Here is my code. Do you have any idea what is missing to display ...
3
votes
2answers
350 views

C++ to create a Game for Nintendo DS

Well, i'm trying to do a small game for DS-DSi in C++. Just for fun and feel happy. I was wondering if i could get any guide or help onto programming it. Since i have no clue how it works and how to ...
3
votes
2answers
680 views

ds python import math module

I'm trying to get some python code I've written earlier on Windows to work on my DS. I'm using (DSPython), and when I tried to import math, it failed with "ImportError: No module named math". I've ...
3
votes
5answers
702 views

Nintendo DS homebrew with Ada?

Note: I know very little about the GCC toolchain, so this question may not make much sense. Since GCC includes an Ada front end, and it can emit ARM, and devKitPro is based on GCC, is it possible to ...
2
votes
2answers
345 views

5 Bit RGB (0, 31, 0) to 16 Bit RGB (0, 255, 0)

So I've been starting DS programming, and I notice that to draw a pixel the color must be a RGB(0, 31, 0). Is there any way to change that to something like RGB(0, 255, 0)?
2
votes
7answers
296 views

bring malloc() back to its initial state

Do you know if there is a way to bring back malloc in its initial state, as if the program was just starting ? reason : I am developing an embedded application with the nintendods devkitpro and I ...
2
votes
1answer
205 views

Nintendo DS and Neural Networks

i was wondering if DS`s hardware is capable of running a game that utilizes a feedforward neural network using genetic algorithms. I know that this has to do with the implementation of the homebrew ...
2
votes
3answers
401 views

Saving an array of colour data as a PNG file on DS

I'm looking for a library to save an array of colour data to a PNG file. (That's all there is to it, right? I know very little about the internals of a PNG.) This is for use in Nintendo DS ...
1
vote
2answers
371 views

Nintendo DS using PAlib

I've been looking in to Nintendo DS development on behalf of my agency and begun using the devkitPro/libnds and PAlib, it seems ideal for our needs until we decide if it's a viable route for us and ...
1
vote
2answers
640 views

gluProject on NDS?

I've been struggling with this for a good while now. I'm trying to determine the screen coordinates of the vertexes in a model on the screen of my NDS using devKitPro. The library seems to implement ...
1
vote
2answers
300 views

Combining 3D and framebuffer mode on the DS

The documentation implies that you can either have 3D rendering or framebuffer mode, and each only to the active display. Is there any way to render 3D to one screen and framebuffer to the other?
1
vote
2answers
295 views

Why doesn't keysDownRepeat() in libnds seem to work when calling it multiple times?

I have code like this to move the player in my game left, right, up, and down: keysSetRepeat(20, 5); while (lives) { scanKeys(); if (keysDownRepeat() & (KEY_LEFT | KEY_RIGHT | KEY_UP | ...
1
vote
2answers
464 views

How do I programatically search for Wi-Fi access point using PAlib on the Nintendo DS

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

How would one draw to the sub display of a ds as if it was a framebuffer?

I need to draw raw pixel data to the Nintendo DS's "sub" screen, such as if I was drawing to the main screen in "framebuffer" mode or "Extended Rotation" mode. How can I do this with the current ...
0
votes
0answers
163 views

C++ Fade System [closed]

Easy. How i do a Fade-in and fade-out System in C++ for a Nintendo DS Homebrew Application?
0
votes
1answer
172 views

ds touch screen sensitivity

I want to read pressure level from the lower screen ala Colors! (drawing program for ds) I can't find any good example source showing this and the libnds documentation is crap: see here There is ...
0
votes
1answer
149 views

Writing PSRAM in EZ Flash 3 in 1

I am trying to figure out how to program the PSRAM in the GBA sized EZ Flash 3 in 1 card. Basically repeat what GBA Exploader and other programs do. If I select a block and program it then read it ...
-2
votes
1answer
79 views