Howdy,
I was wondering if anyone might have recommendations for WiFi modules for a low-end embedded system. I'm primarily thinking of Arduino so a simple interface to the radio would be ideal (not USB).
Thanks,
Drew
Howdy,
I was wondering if anyone might have recommendations for WiFi modules for a low-end embedded system. I'm primarily thinking of Arduino so a simple interface to the radio would be ideal (not USB).
Thanks,
Drew
Do you want a module that does serial link to wifi conversion, or do you want to run a TCP/IP stack on your controller?
Hi Julian,
Ideally, I'd like a TCP/IP interface so that the embedded system could directly access Internet content (like a RSS feed). But now that you've raised the question, I'm not sure the Arduino (8-bit AVR) could handle a TCP/IP stack and higher level protocols, so I'm not opposed stepping up to a beefier MCU like PIC32 or ARM Cortex-M3.
The most important factors for the system are low-cost & low-power. I know there's buckets of cheap USB wi-fi modules out there, but I suspect I'd have to upgrade to a more costly & power hungry system capable of running Linux to use them.
Thanks,
Drew
I've managed to get a TCP/IP stack plus WiFi drivers running on a PIC18 (also 8 bit) so don't give up hope. And I managed to port it to AVR, if I recall rightly. If you'd like to see the code, let me know.
Otherwise, Microchip do a rather nice (and cheap) WiFi module (http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=1406&dDocName=en549227) which you control via SPI, and their TCP/IP stack is pretty standardised and should be easy to port.
J
Thanks for the suggestion - I'll check out that Microchip part.
If you do want to branch out, I'd also recommend looking at Freescale's Tower System, for which there are a number of WiFi modules (with free software drivers and stacks). E.g. http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=TWR-WIFI-AR4100. Plus, the Kinetis Cortex-M4 processors are pretty awesome, and there's a full free RTOS for them too.
You are perfectly right Julian Freescale has actually 3 different Wifi modules based on 3 different chipsets from 3 different suppliers(http://www.freescale.com/webapp/sps/site/overview.jsp?nodeId=0152106740AFE4) . This allows you to select the one that is meeting your specification requirements while they are all supported into the Tower ecosystem. This opens you up the access to the Kinetis 32 bits MCUs but also to the 8 bits MCU that are also supported by this dev tool. And to MQX which is a very complete and FREE OF CHARGE RTOS.
Julian,
You cannot port the Microchip TCP/IP Stack to any other manufacturers devices. To download the Microchip TCP/IP Application stack you need to accept an agreement which specifically forbids running the stack on any other manufacturers devices or porting it to any other architecture. You could however run it on a a suitable Microchip part, of which there are many, I'm sure.
If you are going to use PIC18F mcu with Microchip tcp/ip stack, make sure you get a mcu with at least 64 kB of flash, and 96 kB is even better:) I've made a mistake using 18F2550 (32 kB) and had to upgrade it to 18F2685...
If you are going to use PIC18F mcu with Microchip tcp/ip stack, make sure you get a mcu with at least 64 kB of flash, and 96 kB is even better:) I've made a mistake using 18F2550 (32 kB) and had to upgrade it to 18F2685...