Search found 5 matches

by thiagoauler
Mon Aug 31, 2009 3:15 am
Forum: devkitARM
Topic: nitrofs is not working on nds
Replies: 4
Views: 5828

Re: nitrofs is not working on nds

Hi... thanks for the replies...

I'm using the ezflash kernel version 2.0RC4, the only thing i know is it's based on moonshell 2
Hmm.. I know nothing about this homebrewmenu. can you provide some link? :oops:

Thanks again.. bye!
by thiagoauler
Fri Aug 28, 2009 10:51 pm
Forum: devkitARM
Topic: nitrofs is not working on nds
Replies: 4
Views: 5828

nitrofs is not working on nds

Hi,

I've made an simple app that uses nitrofs (filesystem.h)...
If I test on a emulator, it works perfectly.. but if I test on my NDS (EZ-Flash Vi) it doesn't work.
Even the example provided by devkit doesn't work.

Please.. some help

TIA
by thiagoauler
Wed Aug 26, 2009 11:28 pm
Forum: DS/DSi Development
Topic: Problems with NitroFS
Replies: 4
Views: 4630

Re: Problems with NitroFS

Man... i just can't believe...

I put hello_world.txt.txt in my folder...
:lol:

what a mistake.... lol
now it's working like a charm!

thanks
by thiagoauler
Wed Aug 26, 2009 11:12 pm
Forum: DS/DSi Development
Topic: Problems with NitroFS
Replies: 4
Views: 4630

Re: Problems with NitroFS

Hi... The example I'm using as basis can be found here: <devkitPro>\examples\nds\filesystem\nitrofs\nitrodir This example worked fine, I tested using no$gba. But the "problem" is when I did some modifications to use "FILE *fopen(...)" instead of "DIR *diropen(...)" The filesystem files are inside a ...
by thiagoauler
Wed Aug 26, 2009 8:27 pm
Forum: DS/DSi Development
Topic: Problems with NitroFS
Replies: 4
Views: 4630

Problems with NitroFS

Hi, everyone, This is my question: Does someone know why fopen call is not working?? Here is my code: #include <nds.h> #incluide <filesystem.h> #include <stdio.h> int main(void) { consoleDemoInit(); nitroFSInit(); FILE *f = fopen("nitro:/hello_world.txt", "rb"); if (f != NULL) { fscanf(f, "%s", str ...