Difference between revisions of "Dev:cc3200"

From DiLab
Jump to: navigation, search
(New page: TI Chip with Arm Cortex M4 and network processor with ipV4 in hardware. Resources: * [https://hackpad.com/Using-the-CC3200-Launchpad-Under-Linux-Rrol11xo7NQ Using the CC3200 Launchpad Und...)
 
Line 1: Line 1:
TI Chip with Arm Cortex M4 and network processor with ipV4 in hardware.
TI Chip with Arm Cortex M4 and network processor with ipV4 in hardware.


Resources:
= Resources =
* [https://hackpad.com/Using-the-CC3200-Launchpad-Under-Linux-Rrol11xo7NQ Using the CC3200 Launchpad Under Linux]
* [https://hackpad.com/Using-the-CC3200-Launchpad-Under-Linux-Rrol11xo7NQ Using the CC3200 Launchpad Under Linux]

= Notes =

Enable recognition for the serial USB connection, which is a FTDI chip with TI codes:
sudo su
modprobe ftdi-sio
echo 0451 c32a > /sys/bus/usb-serial/drivers/ftdi_sio/new_id

Alternative: use this udev rule:
ATTRS{idVendor}=="0451", ATTRS{idProduct}=="c32a", MODE="0660", GROUP="dialout", RUN+="/sbin/modprobe ftdi-sio", RUN+="/bin/sh -c '/bin/echo 0451 c32a > /sys/bus/usb-serial/drivers/ftdi_sio/new_id'"

Revision as of 16:51, 10 December 2014

TI Chip with Arm Cortex M4 and network processor with ipV4 in hardware.

Resources

Notes

Enable recognition for the serial USB connection, which is a FTDI chip with TI codes:

sudo su
modprobe ftdi-sio
echo 0451 c32a > /sys/bus/usb-serial/drivers/ftdi_sio/new_id

Alternative: use this udev rule:

ATTRS{idVendor}=="0451", ATTRS{idProduct}=="c32a", MODE="0660", GROUP="dialout", RUN+="/sbin/modprobe ftdi-sio", RUN+="/bin/sh -c '/bin/echo 0451 c32a > /sys/bus/usb-serial/drivers/ftdi_sio/new_id'"