This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Embedded device spawning a wireless network - which module...?

Hello,

Apologies for not asking a strictly Keil related question, but I was hoping somebody would be able to share with me his experience with wireless modules that make it possible for a device like an iPad or laptop to connect to the embedded device (in other words, it needs to allow others to connect to its own network). Is this a standard option of WiFi modules...? (I checked a couple of user manuals but it is not a 100% clear yet...). I have (currently) little experience with WiFi devices...

Parents
  • It makes a difference as now the scenario has got changed.We can now find a WiFi module which is best suit for our application and MCU type. This will remove unnecessary programing and porting. Plenty of WiFi evaluation kit are available to just connect and go wireless. The wireless world is really growing and the business model is getting changed.

Reply
  • It makes a difference as now the scenario has got changed.We can now find a WiFi module which is best suit for our application and MCU type. This will remove unnecessary programing and porting. Plenty of WiFi evaluation kit are available to just connect and go wireless. The wireless world is really growing and the business model is getting changed.

Children
  • HI. I found this code on my interenet computer. it does not work. plz help?

    #include <reg51.h>
    sbit pin = P1^0;
    main()
    { P1 = 0x00; TMOD = 0x09;
    loop:TL0 = 0xAF; TH0 = 0x3C; pin = 1; TR0 = 1; while(TF0 == 0) {}

    TL0 = 0xAF; TH0 = 0x3C; pin = 0; while(TF0 == 0) {} goto loop;
    }