Hola, tengo problemas al conectar la NDS, mi idea es mandar cadenas de texto entre dos NDS, pero no se como hacerlo, me da problemas. Aunque esto se supone que seria para leer algo de internet. [url][/url]
Codigo:
// Basic dswifi lib example using PAlib
//
// Make sure you have selected an ARM7 binary with DSWIFI support in your project Makefile!
//
// Includes
#include <PA9.h> // Include for PA_Lib
// Function: main()
int main(int argc, char ** argv)
{
PA_Init(); // Initializes PA_Lib
PA_InitVBL(); // Initializes a standard VBL
// Iniciar pantallas
PA_InitText(0,0);
PA_InitText(1,0);
PA_OutputText(0, 1, 1, "PA_InitWifi() ...");
PA_InitWifi();
PA_OutputText(0, 1, 2, "done!\nPA_ConnectWifiWFC() ...");
if (!PA_ConnectWifiWFC())
{
PA_OutputText(0, 1, 4, "error!");
return 1;
}
PA_OutputText(0, 1, 4, "done!\nWIFI is now ready!");
char *buffer[256];
PA_GetHTTP(buffer,"http://www./*url*/.es/NDS/index.htm");
PA_OutputText(1, 1,1 ,"Leido: %s",buffer);
while (1)
{
PA_WaitForVBL();
}
return 0;
} // End of main()
Resultado:
Leido: <html><head><title>Connection error</title></head><body><h1>Connection Error </h1> <p> Unable to connect to the requested site</p><h3>Details</h3>Error resolving hostname : resource not found</body></html>
Me gustaria conseguir poder enviar y recibir datos entre NDS o NDS y ordenador, haciendo uso de Cliente-servidor, pero si no me sale esto no podre avanzar.
Muchas gracias por adelantado