Jump to content

knight0fdragon

Members+
  • Posts

    26
  • Joined

  • Last visited

knight0fdragon's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. go into dualis.ini and change the GPU line to look like this [GPU] # OpenGL, D3D, GDI Renderer=GDI
  2. resolving it is not the problem, I am just suggesting a feature that would be nice to see in the lib..... maybe Ill do it and submit it to CVS
  3. This is kind of hard to explain so I will try to create a scenario for better understanding Lets say in my WFC i have 2 spots saves spot 1 has linksys spot 2 has SoftAP now I am out on the road I would like to connect to SoftAP using Autoconnect BUT in the area I am in, someone has an SSID of linksys, and I can not connect to this router so the wifi then fails to connect, and thus I can not do any networking. What I am asking, is that if the DS fails to connect to spot 1 because of this issue, that instead of dieing, try to check out spot 2, then spot 3 right now what i did was just change the SSID in my settings
  4. the problem lies with my router, for some reason it wont even let the DS chat with itself as for your port thing, I dont know what the hell you do, nor do I want to. My method works just fine and I only declare the port to send, the router creates the recv
  5. Has anyone ever succesfully connected 2 DS's to the same AP and tried using the wifi test to communicate??? I have no clue on what I am doing wrong I can chat from DS1 to PC and vice versa I can chat from DS2 to PC and vice versa BUT I can 't chat from DS1 to DS2 and vice versa I am on a Versalink router also btw
  6. i dont know if anyone is experiencing this, but when I FAT_fopen(..."r") then close it, then FAT_fopen(..."w") dualis seems to crash when i want to write to the file on the DS, i believe that it just freezes on the DS, but that may just be because its having the issues with the writing to begin with, just something that should be looked into perhaps ??? thanks for ur time fixed ds bug, seems like an emu issue what the code looks like.... #include <nds.h> #include "../../general/command.h" #include <nds/arm9/console.h> //basic print funcionality #include <stdio.h> #include <stdlib.h> #include <gbfs.h> // filesystem functions #include "gba_nds_fat/gba_nds_fat.h" FAT_FILE *fps; int main(void) { //irqs are nice lcdMainOnBottom(); FAT_InitFiles(); fps = FAT_fopen("a.txt","r"); FAT_fclose(fps); fps = FAT_fopen("a.txt","w"); int wasWritten = FAT_fwrite("0",1, 1, fps); FAT_fclose(fps); }
  7. depending on the prize i may enter, i have a few Wifi apps made and a few more that could be turned into wifi apps, also some ideas too
  8. http://www.nintendowifi.com/customersuppor...re%2F2wire.html
  9. this is probably too late but did u use file recovery software to see if some of the database is still availbale??
  10. Have you tested with official NDS software like mario kart or AC, if you are able to connect then you know its not a DS issue
  11. i know how you feel sgstairs, dont let comments like these discourage you, do what u seem fit to make this project work, because its the only way its going to get done, Id rather you doing something u love doing the way u love doing it then any other way, gives us a better quality product in the end. I too would like to see a new version, just like the rest of the communiry, but we are finding ways to deal with it till that day comes, so best of luck to ya
  12. if i had TCP i wouldnt mind, but UDP unfortunalty drops data, so there is a less of a chance that i would get it if it were non blocked, plus im keeping networking out of the game loop because its just neater and more versitile when dealing with tons of functions
  13. the one on GBADEV does not work as of yet, that i know of, and if i interrupt, it gets locked inside. what is this select()? have any documentation or an example i can use?
  14. is there some kind of way to do simple threading?? the only thing that i can do right now is set up a timer and have a nonblocking recv, but i would like it to be blicked when the next lib comes out and have my program wait for it while it is also doing other things
  15. Im trying to show a wifi bar on my screen, so I figure i have to use the data from RSSI, now is there a command or something to show the updates of the RSSI, I tried global_connectAP.rssi*100/0xD0 but that is not keeping my RSSI up to date, and I cant find anywhere in the lib to get the RSSI so Im thinking im overlooking something here
×
×
  • Create New...