From what I can find, the internal Wi-Fi chip on the pi 3 is a custom Broadcom BCM43438.
Is it capable of operating in AP mode?
From what I can find, the internal Wi-Fi chip on the pi 3 is a custom Broadcom BCM43438.
Is it capable of operating in AP mode?
According to this article yes you can:
One of my first thoughts was, can I use it as a SoftAP for some ESP8266 sensor nodes? As it turns out, you can, and it's not that difficult, as the BCM43438 chip is supported by the open-source
brcmfmac
driver!
You'll need to install two packages, hostapd
and dnsmasq
, to get a basic setup running (which the article walks you through), or isc-dhcp-server
and bind9
to get a more powerful and flexible setup.
You can see the full command line process of setting up the pi3 in a gist here https://gist.github.com/Lewiscowles1986/fecd4de0b45b2029c390
It does seem to have problems if the Pi3 is booted with other wlan attached on boot, so what I do is plug them in after boot (would love a solution to that problem)
hostapd
anddnsmasq
? It should be fairly straightforward for you to verify yourself. – dimo414 Apr 13 '16 at 01:22