Talk:SAM9-L9260 Hacking: Difference between revisions

From Hive76 Wiki
Jump to navigationJump to search
No edit summary
No edit summary
 
Line 1: Line 1:
 
= Script for reloading for modprobe for FTDI cable =
<pre>
<pre>
!/bin/bash
!/bin/bash
Line 5: Line 5:
rmmod pl2303
rmmod pl2303
modprobe usbserial vendor=0x067b product=0x2303
modprobe usbserial vendor=0x067b product=0x2303
#now you should have /dev/ttyUSBx instead of \usb\ARM0 to connect to your board
echo 'check for /dev/ttyUSB? existing'
</pre>
= Script for reloading for modprobe for direct l9260 connection =
<pre>
#!/bin/bash
rmmod usbserial
modprobe usbserial vendor=0x03eb product=0x6124
#now you should have /dev/ttyUSBx instead of \usb\ARM0 to connect to your board
#now you should have /dev/ttyUSBx instead of \usb\ARM0 to connect to your board
echo 'check for /dev/ttyUSB? existing'
echo 'check for /dev/ttyUSB? existing'
</pre>
</pre>

Latest revision as of 17:00, 23 December 2009

Script for reloading for modprobe for FTDI cable

!/bin/bash
#bash Script for modprobe reload for FTDI USB to Serial.
rmmod pl2303
modprobe usbserial vendor=0x067b product=0x2303
#now you should have /dev/ttyUSBx instead of \usb\ARM0 to connect to your board
echo 'check for /dev/ttyUSB? existing'

Script for reloading for modprobe for direct l9260 connection

#!/bin/bash
rmmod usbserial
modprobe usbserial vendor=0x03eb product=0x6124
#now you should have /dev/ttyUSBx instead of \usb\ARM0 to connect to your board
echo 'check for /dev/ttyUSB? existing'