문제

I'm trying to get my Stellaris Launchpad to work with the Energia IDE. I'm told to upload programs and to run the serial port I've got to create a udev entry.

I'm relatively new to linux (although not Ubuntu) so could anyone please provide me with a sample udev file.

My Stellaris board's on port /dev/ttyACM0, VID=1cbe and PID=00fd.

As of now I'm using this ->

# 
# This file allows non-root access to TI stellaris launchpad
# See udev(7) for syntax.
#
SUBSYSTEM=="usb",ATTRS{idVendor}=="1cbe",ATTRS{idProduct}=="00fd",MODE="0666"
KERNEL=="ttyACM0",ATTRS{idVendor}=="1cbe",ATTRS{idProduct}=="00fd",MODE="0666"
#  

Thanks in advance

도움이 되었습니까?

해결책

Problem solved.

For those with the same or a similar problem. Here's the simple solution.

Step 1: Add your username to the "dialout" group. In terminal type,

sudo adduser <username> dialout

Step 2: Create a udev (eg: 61-stellpad.rules) file in the directory: /etc/udev/rules.d/ with the contents as,

SUBSYSTEM=="usb", ATTRS{idVendor}=="1cbe", ATTRS{idProduct}=="00fd", MODE="0666"

Step 3: Save, unplug and replug the Stellaris board. All done.

[Note]: The solution was provided by a fellow Stellaris Launchpad user - Bernard.
Works perfectly now.

Cheers.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top