Difference between revisions of "Wifi and Bluetooth on the DEV-IOT6U"

From wiki.emacinc.com
Jump to: navigation, search
(Page creation)
 
Line 16: Line 16:
 
On the DEV-IOT6U, bluetooth is disabled by default. Enable it by:
 
On the DEV-IOT6U, bluetooth is disabled by default. Enable it by:
 
<syntaxhighlight>gpioset gpiochip0 5=1</syntaxhighlight>
 
<syntaxhighlight>gpioset gpiochip0 5=1</syntaxhighlight>
For serially connected bluetooth devices, you need to attach to them using hciattach:
+
<syntaxhighlight>hciattach /dev/ttymxc3 -t 30 bcm43xx 115200 noflow</syntaxhighlight>
<syntaxhighlight>hciattach /dev/ttymxc3 -t 30 bcm43xx 921600 noflow</syntaxhighlight>
 
 
Use '''hciconfig''' to check that hci0 device interface is enabled, and use <syntaxhighlight>hciconfig hci0 up</syntaxhighlight> to open and initialize the HCI device. See [https://linux.die.net/man/8/hciconfig hciconfig manual] for more information on configuring your Bluetooth device.<br>
 
Use '''hciconfig''' to check that hci0 device interface is enabled, and use <syntaxhighlight>hciconfig hci0 up</syntaxhighlight> to open and initialize the HCI device. See [https://linux.die.net/man/8/hciconfig hciconfig manual] for more information on configuring your Bluetooth device.<br>
 
<br>
 
<br>

Revision as of 17:38, 28 September 2020

Wifi

Most of the information regarding Wifi can be found in the Wifi wiki page.
For this kit, the setup should already be preinstalled, and you can skip to Wifi: Wireless Networking
If when attempting to establish a connection in step 6 with:

/etc/init.d/wpa_supplicant start

the command seems to do nothing, attempt to restart the connection with:

/etc/init.d/wpa_supplicant restart

Bluetooth

On the DEV-IOT6U, bluetooth is disabled by default. Enable it by:

gpioset gpiochip0 5=1
hciattach /dev/ttymxc3 -t 30 bcm43xx 115200 noflow

Use hciconfig to check that hci0 device interface is enabled, and use

hciconfig hci0 up

to open and initialize the HCI device. See hciconfig manual for more information on configuring your Bluetooth device.


From there

Further Information