2
votes
1answer
91 views
Nintendo DS and Neural Networks
Hello, 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 implem …
4
votes
1answer
97 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?
0
votes
1answer
36 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:
s …
18
votes
6answers
2k 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 …
3
votes
2answers
192 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 u …
1
vote
1answer
118 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 framebuffe …
1
vote
3answers
405 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 …
0
votes
1answer
74 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 progr …
4
votes
3answers
691 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?
1
vote
4answers
689 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?
0
votes
1answer
215 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.
1
vote
1answer
140 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 | K …
2
votes
3answers
190 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 Ni …
