Re: [beagleboard] Removing I2C2 from kernel

2014-07-30 Thread Maxim Podbereznyy
omap3beagle is for BeagleBoard and BeagleBoard-XM, don't touch this file

as for I2C you need to change pin mux settings for particular pins. I think
it's even possible to change the pin mux settings right in the working OS,
using the /sys directory. Unfortunately I don't know how


2014-07-29 2:53 GMT+04:00 fes...@googlemail.com:

 Hi there.
 I would like to use both CAN0 and CAN1 on my beaglebone black.
 I followed tutorial on this page;
 http://www.embedded-things.com/bbb/enable-canbus-on-the-beaglebone-black/

 CAN0 works for a start but the board restarts after a while.
 Works properly when CAN0 is not used, so I am guessing I2C2 is the problem.
 http://pastebin.com/L0BLMwYR

 I think that board-omap3beagle.c kernel file needs to modified.
 But I am not skilled enough to do edit it.

 Can anyone help me to diable I2C2 entirely?

 Kind Regards


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.




-- 
LinkedIn - http://www.linkedin.com/in/maximpodbereznyy
Company - http://www.linkedin.com/company/mentorel
Facebook - https://www.facebook.com/mentorel.company

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] unable to boot Beaglebone Black from NFS

2014-07-30 Thread Giles Godart-Brown
Thanks for your help, but sadly, on this version a uEnv.txt just containing;
console=ttyO0,115200n8
client_ip=192.168.10.47
server_ip=192.168.10.118
gw_ip=192.168.10.1
root_dir=/home/bone/bbb_nfs_root

does not work, it doesn't even fire up the ethernet port (no activity 
lights), I'm guessing because there is no eth0 defined and its perhaps 
trying to fire up the USB network or something.

I'll try the rsync method once I can ping the beaglebone

G

On Wednesday, 30 July 2014 03:05:41 UTC+1, john3909 wrote:


 From: Giles Godart-Brown ggodar...@gmail.com javascript:
 Reply-To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript:
 Date: Tuesday, July 29, 2014 at 2:26 PM
 To: beagl...@googlegroups.com javascript: beagl...@googlegroups.com 
 javascript:
 Subject: [beagleboard] unable to boot Beaglebone Black from NFS

 I've seen many posts about how to boot a Beaglebone black via an NFS 
 mounted root partition, but none seem to work with the latest version.
 I started by creating an NFS mount on my Ubuntu PC and successfully 
 mounting it from the Beaglebone when booted from an SD image of the latest 
 version dated 2013.06.20 
 https://s3.amazonaws.com/angstrom/demo/beaglebone/Angstrom-Cloud9-IDE-GNOME-eglibc-ipk-v2012.12-beaglebone-2013.06.20.img.xz
  from 
 the Beaglebone site. All the commands below were done as root.;
 uname -a
 Linux beaglebone 3.8.13-bone50 
 Then test the mount with;
 mount -o nfsvers=3 192.168.10.118:/home/bone /mnt/nfs
 Next I copied the entire filesystem to the nfs mount with
 cp -axv /. /mnt/nfs/.

 I’m not sure this is going to work because you are attempting to copy 
 dynamic files and folders. Rather insert the SDCard into your host and do 
 the following:
 sudo rsync -avz /mnt/rootfs/ /home/userid/targetNFS/


 I've edited the fstab on the nfs (/home/bone/etc/fstab) to add
 /dev/nfs / nfs defaults 0  0
 and correctly edited /home/bone/etc/network/interface to reflect the 
 correct IP address etc.
 Next I edited the uEnv.txt on the SD card to add 
 serverip=192.168.10.118
 ipaddr=192.168.10.47
 hostname=MH_bbb
 netmask=255.255.255.0
 gateway=192.168.10.1
 nfsdevice=eth0:off
 nfsopts=vers=3
 rootpath=/home/bone
 and changed the mmcargs line to;
 mcargs=setenv bootargs console=tty0 console=${console} ${optargs} 
 ${cape_disable} ${cape_enable} ${kms_force_mode} 
 ip=${ipaddr}:${serverip}:${gateway}:${netmask}:${hostname}:${nfsdevice} 
 root=/dev/nfs rw nfsroot=${serverip}:${rootpath},${nfsopts}  ${systemd}
 The Bone starts to boot and I can ping it on the correct IP address, but 
 the display never shows anything and it doesn't let me ssh to it.
 Can anyone let me know what I've missed?
 Thanks

 This is my complete uEnv.txt:

 ==
 client_ip=10.100.116.105
 server_ip=10.100.116.73
 gw_ip=10.100.116.1
 root_dir=/home/userid/targetNFS
 ==

 Replace userid with your own desktop login id and replace client_ip, 
 server_ip and gw_ip addresses as required. 





 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] unable to boot Beaglebone Black from NFS

2014-07-30 Thread Giles Godart-Brown
Thanks for the sugestion William, I'll try that once I can get it 
successfully mounting the file system using the suggestions below/above

Giles

On Wednesday, 30 July 2014 06:38:17 UTC+1, William Hermans wrote:

 Would be much easier to just use: 

 cd ~/rootfs/
 sudo tar -zcvf ~/rootfs.tar.gz .

 To compress and then.
 sudo tar xzvf ~/rootfs.tar.gz -C /media/rootfs/ 

 To target a rootfs.


 On Tue, Jul 29, 2014 at 7:05 PM, John Syn john...@gmail.com javascript:
  wrote:


  From: Giles Godart-Brown ggodar...@gmail.com javascript:
 Reply-To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript:
 Date: Tuesday, July 29, 2014 at 2:26 PM
 To: beagl...@googlegroups.com javascript: beagl...@googlegroups.com 
 javascript:
 Subject: [beagleboard] unable to boot Beaglebone Black from NFS

 I've seen many posts about how to boot a Beaglebone black via an NFS 
 mounted root partition, but none seem to work with the latest version.
 I started by creating an NFS mount on my Ubuntu PC and successfully 
 mounting it from the Beaglebone when booted from an SD image of the latest 
 version dated 2013.06.20 
 https://s3.amazonaws.com/angstrom/demo/beaglebone/Angstrom-Cloud9-IDE-GNOME-eglibc-ipk-v2012.12-beaglebone-2013.06.20.img.xz
  from 
 the Beaglebone site. All the commands below were done as root.;
 uname -a
 Linux beaglebone 3.8.13-bone50 
 Then test the mount with;
 mount -o nfsvers=3 192.168.10.118:/home/bone /mnt/nfs
 Next I copied the entire filesystem to the nfs mount with
 cp -axv /. /mnt/nfs/.

 I’m not sure this is going to work because you are attempting to copy 
 dynamic files and folders. Rather insert the SDCard into your host and do 
 the following:
 sudo rsync -avz /mnt/rootfs/ /home/userid/targetNFS/


 I've edited the fstab on the nfs (/home/bone/etc/fstab) to add
 /dev/nfs / nfs defaults 0  0
 and correctly edited /home/bone/etc/network/interface to reflect the 
 correct IP address etc.
 Next I edited the uEnv.txt on the SD card to add 
 serverip=192.168.10.118
 ipaddr=192.168.10.47
 hostname=MH_bbb
 netmask=255.255.255.0
 gateway=192.168.10.1
 nfsdevice=eth0:off
 nfsopts=vers=3
 rootpath=/home/bone
 and changed the mmcargs line to;
 mcargs=setenv bootargs console=tty0 console=${console} ${optargs} 
 ${cape_disable} ${cape_enable} ${kms_force_mode} 
 ip=${ipaddr}:${serverip}:${gateway}:${netmask}:${hostname}:${nfsdevice} 
 root=/dev/nfs rw nfsroot=${serverip}:${rootpath},${nfsopts}  ${systemd}
 The Bone starts to boot and I can ping it on the correct IP address, but 
 the display never shows anything and it doesn't let me ssh to it.
 Can anyone let me know what I've missed?
 Thanks

 This is my complete uEnv.txt:

 ==
 client_ip=10.100.116.105
 server_ip=10.100.116.73
 gw_ip=10.100.116.1
 root_dir=/home/userid/targetNFS
 ==

 Replace userid with your own desktop login id and replace client_ip, 
 server_ip and gw_ip addresses as required. 





  -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.

  -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: BBB Weston + sgx + ti-omap3-sgx-wayland-wsegl + HDMI: display wrapping issue

2014-07-30 Thread Andreas Müller
On Wed, Jul 30, 2014 at 12:13 AM, Cody P Schafer d...@codyps.com wrote:
 After I posted this I realized that while I was building the drm-gbm
 branch, weston was using the fbdev backend, and thus not passing
 anything through the accelerated part :(
Aargh - and I hoped you could inspire me :)

FWIW: fbdev backend should work (more or less) with --use-gl (this
option is not mentioned in weston --help) and master branch

Andreas

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: unable to boot Beaglebone Black from NFS

2014-07-30 Thread Giles Godart-Brown
William
Yes I did start with your guide, but could not make it work, then I noticed 
that the addresses in the uEnv.txt that come with the standard distro did 
not match the ones in your guide and I'm using the standard kernel, uBoot 
etc. so I got suspicious and I started looking elsewhere and hacking around.
I've now changed mmcargs to netargs and still no joy. I'm going to mess 
with the ipaddr bit when I get home from work tonight since currently I'm 
doing a bit more than you with 
${ipaddr}:${serverip}:${gateway}:${netmask}:${hostname}:${nfsdevice} 
instead of just ${ipaddr}.
I also noticed in the standard distro it has ${cape_disable} ${cape_enable} 
${kms_force_mode} in the mmcargs line, I'm not sure if you also need them 
when using netargs with this version.

Giles

On Wednesday, 30 July 2014 01:41:08 UTC+1, William Hermans wrote:

 Giles, what your your fstab look like on the beaglebone black ?  Also I'm 
 not 100% sure about this but for consistancy you should not use mmcargs, 
 but instead use netargs

 This is what my own netargs line looks like:

 *netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs 
 nfsroot=${serverip}:${rootpath},vers=3 rw ip=${ipaddr}*


 NFS version 3 works fine on Debian, perhaps Ubuntu is different ? I know 
 you've read other guides but perhaps reading my guild to double check what 
 you've done is complete. My guide: 
 http://www.embeddedhobbyist.com/debian-tips/beaglebone-black/beaglebone-black-nfs-root/
  

 scroll down to *Configuring the NFS server *and read down to see if you 
 perhaps missed something. Also keep in mind that Although Ubuntu is based 
 on Debian, package names can be different, and not everything is done the 
 same way.


 On Tue, Jul 29, 2014 at 3:49 PM, Giles Godart-Brown ggodar...@gmail.com 
 javascript: wrote:

 Thanks for the quick reply, the serial port log reveals that it does not 
 like vers=3, nor nfsvers=3 in the nfsopts variable, after removing them it 
 gets a little further, but still does not boot. The full serial log has 
 been posted here http://pastebin.com/8E0XRu57

 Giles

 On Tuesday, 29 July 2014 22:26:06 UTC+1, Giles Godart-Brown wrote:

 I've seen many posts about how to boot a Beaglebone black via an NFS 
 mounted root partition, but none seem to work with the latest version.
 I started by creating an NFS mount on my Ubuntu PC and successfully 
 mounting it from the Beaglebone when booted from an SD image of the latest 
 version dated 2013.06.20 
 https://s3.amazonaws.com/angstrom/demo/beaglebone/Angstrom-Cloud9-IDE-GNOME-eglibc-ipk-v2012.12-beaglebone-2013.06.20.img.xz
  from 
 the Beaglebone site. All the commands below were done as root.;
 uname -a
 Linux beaglebone 3.8.13-bone50 
 Then test the mount with;
 mount -o nfsvers=3 192.168.10.118:/home/bone /mnt/nfs
 Next I copied the entire filesystem to the nfs mount with
 cp -axv /. /mnt/nfs/.
 I've edited the fstab on the nfs (/home/bone/etc/fstab) to add
 /dev/nfs / nfs defaults 0  0
 and correctly edited /home/bone/etc/network/interface to reflect the 
 correct IP address etc.
 Next I edited the uEnv.txt on the SD card to add 
 serverip=192.168.10.118
 ipaddr=192.168.10.47
 hostname=MH_bbb
 netmask=255.255.255.0
 gateway=192.168.10.1
 nfsdevice=eth0:off
 nfsopts=vers=3
 rootpath=/home/bone
 and changed the mmcargs line to;
 mcargs=setenv bootargs console=tty0 console=${console} ${optargs} 
 ${cape_disable} ${cape_enable} ${kms_force_mode} ip=${ipaddr}:${serverip}:${
 gateway}:${netmask}:${hostname}:${nfsdevice} root=/dev/nfs rw 
 nfsroot=${serverip}:${rootpath},${nfsopts}  ${systemd}
 The Bone starts to boot and I can ping it on the correct IP address, but 
 the display never shows anything and it doesn't let me ssh to it.
 Can anyone let me know what I've missed?
 Thanks


  -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Write to EEPROM on BBB?

2014-07-30 Thread Maxim Podbereznyy
Write Protect pin is LOW-Active. This means that by grounding this pin you
do memory protection


2014-07-30 9:34 GMT+04:00 serge.ns...@gmail.com:



 So...anything else that could be missing?



 Hi,
 seems nothing is missed. In this case I'd proceed with an oscilloscope:
 1) ensure the WP (U7.5) is really Low level.
 2) look at the i2c diagram and ensure there is an acnowledge to (page)
 write operation
 3) ensure there is long acnowledge delay  on the second page write
 (otherwise the EEPROM is write protected or some other device responds with
 the i2c ACK!)

 You say you use bare metal soft support. Are you sure your i2c diagarm is
 correct (correct stop condition)? If not, bytes could be read successfully
 but page write may not begin..

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.




-- 
LinkedIn - http://www.linkedin.com/in/maximpodbereznyy
Company - http://www.linkedin.com/company/mentorel
Facebook - https://www.facebook.com/mentorel.company

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] unable to boot Beaglebone Black from NFS

2014-07-30 Thread William Hermans
Giles,

If you tested the mount externally and it works this probably wouldnt be a
NFS issue. Just on a guess form experience and what you've posted. the
kernel is loading, but the rootfs isnt. Your debug messages seems to nearly
confirm this. So if you can add the line mentioned on my blog post to
inittab ( which is copied from Roberts guide ), perhaps you'll get more
information as to what is exactly happening.

Good luck, ill be on later today. Bed time for me.


On Wed, Jul 30, 2014 at 12:26 AM, Giles Godart-Brown ggodartbr...@gmail.com
 wrote:

 Thanks for the sugestion William, I'll try that once I can get it
 successfully mounting the file system using the suggestions below/above

 Giles


 On Wednesday, 30 July 2014 06:38:17 UTC+1, William Hermans wrote:

 Would be much easier to just use:

 cd ~/rootfs/
 sudo tar -zcvf ~/rootfs.tar.gz .

 To compress and then.
 sudo tar xzvf ~/rootfs.tar.gz -C /media/rootfs/

 To target a rootfs.


 On Tue, Jul 29, 2014 at 7:05 PM, John Syn john...@gmail.com wrote:


  From: Giles Godart-Brown ggodar...@gmail.com
 Reply-To: beagl...@googlegroups.com beagl...@googlegroups.com
 Date: Tuesday, July 29, 2014 at 2:26 PM
 To: beagl...@googlegroups.com beagl...@googlegroups.com

 Subject: [beagleboard] unable to boot Beaglebone Black from NFS

 I've seen many posts about how to boot a Beaglebone black via an NFS
 mounted root partition, but none seem to work with the latest version.
 I started by creating an NFS mount on my Ubuntu PC and successfully
 mounting it from the Beaglebone when booted from an SD image of the latest
 version dated 2013.06.20
 https://s3.amazonaws.com/angstrom/demo/beaglebone/Angstrom-Cloud9-IDE-GNOME-eglibc-ipk-v2012.12-beaglebone-2013.06.20.img.xz
  from
 the Beaglebone site. All the commands below were done as root.;
 uname -a
 Linux beaglebone 3.8.13-bone50 
 Then test the mount with;
 mount -o nfsvers=3 192.168.10.118:/home/bone /mnt/nfs
 Next I copied the entire filesystem to the nfs mount with
 cp -axv /. /mnt/nfs/.

 I’m not sure this is going to work because you are attempting to copy
 dynamic files and folders. Rather insert the SDCard into your host and do
 the following:
 sudo rsync -avz /mnt/rootfs/ /home/userid/targetNFS/


 I've edited the fstab on the nfs (/home/bone/etc/fstab) to add
 /dev/nfs / nfs defaults 0  0
 and correctly edited /home/bone/etc/network/interface to reflect the
 correct IP address etc.
 Next I edited the uEnv.txt on the SD card to add
 serverip=192.168.10.118
 ipaddr=192.168.10.47
 hostname=MH_bbb
 netmask=255.255.255.0
 gateway=192.168.10.1
 nfsdevice=eth0:off
 nfsopts=vers=3
 rootpath=/home/bone
 and changed the mmcargs line to;
 mcargs=setenv bootargs console=tty0 console=${console} ${optargs}
 ${cape_disable} ${cape_enable} ${kms_force_mode} ip=${ipaddr}:${serverip}:${
 gateway}:${netmask}:${hostname}:${nfsdevice} root=/dev/nfs rw
 nfsroot=${serverip}:${rootpath},${nfsopts}  ${systemd}
 The Bone starts to boot and I can ping it on the correct IP address, but
 the display never shows anything and it doesn't let me ssh to it.
 Can anyone let me know what I've missed?
 Thanks

 This is my complete uEnv.txt:

 ==
 client_ip=10.100.116.105
 server_ip=10.100.116.73
 gw_ip=10.100.116.1
 root_dir=/home/userid/targetNFS
 ==

 Replace userid with your own desktop login id and replace client_ip,
 server_ip and gw_ip addresses as required.





  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.

 For more options, visit https://groups.google.com/d/optout.

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.

 For more options, visit https://groups.google.com/d/optout.


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] unable to boot Beaglebone Black from NFS

2014-07-30 Thread William Hermans
By the way I was contacted by another party last year who told me that my
blog guide for NFS rootfs wont work with Ubuntu, and fedora. But will work
for Debian ARCH, and BusyBox.

So I have to assume the init daemon for these other distro's are the
culprit. However, if you can find a known working guide from anywhere on
the web ( i386 guide ) and adapt it . . . you should be golden.

Now, if you were willing to switch to Debian on both host and BBB I know it
would work if you followed my guide to the T. But perhaps that is too
much of a leap for you.


On Wed, Jul 30, 2014 at 2:22 AM, William Hermans yyrk...@gmail.com wrote:

 Giles,

 If you tested the mount externally and it works this probably wouldnt be a
 NFS issue. Just on a guess form experience and what you've posted. the
 kernel is loading, but the rootfs isnt. Your debug messages seems to nearly
 confirm this. So if you can add the line mentioned on my blog post to
 inittab ( which is copied from Roberts guide ), perhaps you'll get more
 information as to what is exactly happening.

 Good luck, ill be on later today. Bed time for me.


 On Wed, Jul 30, 2014 at 12:26 AM, Giles Godart-Brown 
 ggodartbr...@gmail.com wrote:

 Thanks for the sugestion William, I'll try that once I can get it
 successfully mounting the file system using the suggestions below/above

 Giles


 On Wednesday, 30 July 2014 06:38:17 UTC+1, William Hermans wrote:

 Would be much easier to just use:

 cd ~/rootfs/
 sudo tar -zcvf ~/rootfs.tar.gz .

 To compress and then.
 sudo tar xzvf ~/rootfs.tar.gz -C /media/rootfs/

 To target a rootfs.


 On Tue, Jul 29, 2014 at 7:05 PM, John Syn john...@gmail.com wrote:


  From: Giles Godart-Brown ggodar...@gmail.com
 Reply-To: beagl...@googlegroups.com beagl...@googlegroups.com
 Date: Tuesday, July 29, 2014 at 2:26 PM
 To: beagl...@googlegroups.com beagl...@googlegroups.com

 Subject: [beagleboard] unable to boot Beaglebone Black from NFS

 I've seen many posts about how to boot a Beaglebone black via an NFS
 mounted root partition, but none seem to work with the latest version.
 I started by creating an NFS mount on my Ubuntu PC and successfully
 mounting it from the Beaglebone when booted from an SD image of the latest
 version dated 2013.06.20
 https://s3.amazonaws.com/angstrom/demo/beaglebone/Angstrom-Cloud9-IDE-GNOME-eglibc-ipk-v2012.12-beaglebone-2013.06.20.img.xz
  from
 the Beaglebone site. All the commands below were done as root.;
 uname -a
 Linux beaglebone 3.8.13-bone50 
 Then test the mount with;
 mount -o nfsvers=3 192.168.10.118:/home/bone /mnt/nfs
 Next I copied the entire filesystem to the nfs mount with
 cp -axv /. /mnt/nfs/.

 I’m not sure this is going to work because you are attempting to copy
 dynamic files and folders. Rather insert the SDCard into your host and do
 the following:
 sudo rsync -avz /mnt/rootfs/ /home/userid/targetNFS/


 I've edited the fstab on the nfs (/home/bone/etc/fstab) to add
 /dev/nfs / nfs defaults 0  0
 and correctly edited /home/bone/etc/network/interface to reflect the
 correct IP address etc.
 Next I edited the uEnv.txt on the SD card to add
 serverip=192.168.10.118
 ipaddr=192.168.10.47
 hostname=MH_bbb
 netmask=255.255.255.0
 gateway=192.168.10.1
 nfsdevice=eth0:off
 nfsopts=vers=3
 rootpath=/home/bone
 and changed the mmcargs line to;
 mcargs=setenv bootargs console=tty0 console=${console} ${optargs}
 ${cape_disable} ${cape_enable} ${kms_force_mode} 
 ip=${ipaddr}:${serverip}:${
 gateway}:${netmask}:${hostname}:${nfsdevice} root=/dev/nfs rw
 nfsroot=${serverip}:${rootpath},${nfsopts}  ${systemd}
 The Bone starts to boot and I can ping it on the correct IP address,
 but the display never shows anything and it doesn't let me ssh to it.
 Can anyone let me know what I've missed?
 Thanks

 This is my complete uEnv.txt:

 ==
 client_ip=10.100.116.105
 server_ip=10.100.116.73
 gw_ip=10.100.116.1
 root_dir=/home/userid/targetNFS
 ==

 Replace userid with your own desktop login id and replace client_ip,
 server_ip and gw_ip addresses as required.





  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.

 For more options, visit https://groups.google.com/d/optout.

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.

 For more options, visit https://groups.google.com/d/optout.


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving 

Re: [beagleboard] BeagleBone Black not detected after partion and unplug usb cable

2014-07-30 Thread Chan Le Van
Hi, Thanks for your answer but my board seems to be sleeping.
Actually, in the first time I plug my board to the laptop, it works fine 
with the power light turned on and 4 LEDS operate normally. But I want to 
install the Ubuntu on it, so  I follow the instruction here:
http://www.armhf.com/boards/beaglebone-black/bbb-sd-install/
after finished the step g(Finally, commit the changes by selecting w to 
‘write’ the partition table and exit fdisk.), 
I unplugged the usb cable. From that, when I connect the board by USB cable 
again, then my board is not starting normally anyomre, the OS  in my laptop 
is not showing the notification about new device has been plugged into it 
and the LEDs are not lighting as well, just the power light in the board 
turned on.
I followed the link you posted but in this, it says that: Use the provided 
microSD card to SD adapter or a USB adapter to connect the SD card to your 
computer.
So does it mean we have to use the external SD card which can communicate 
with the board by the SD card slot and use it to to some next steps to boot 
? When I receive my board, all I have are just the board without the 
external SD card and the USB cable ! So in my situation, what should I do 
to make my board return to the original state ?
Thanks for your help.


On Wednesday, July 30, 2014 1:42:24 AM UTC+1, RobertCNelson wrote:

 On Tue, Jul 29, 2014 at 5:50 PM, Chan Le Van chan...@gmail.com 
 javascript: wrote: 
  Hi everyone. Can someone help with this problem. Thanks a million in 
 advance. 
  I bought a new BeagleBone Black. I followed the instruction in the 
 beableboard website to install embedded Ubuntu on it. The first step is 
 using the fdisk on my laptop to partition. After I finished this step, I 
 unplugged the usb cable(without using the safe remove device). From that 
 time, when i try to plug the Board using the usb cable, the LEDs in the 
 board are not lighting anymore, there's no new mounted device infomation on 
 my Ubuntu laptop and the ethernet periodically shows wired connection 
 disconnected. Please help me make it alive again. Thank you very much. 
 Chan.
 So... You re-partitioned the BeagleBone Black over the usb-otg 
 cable? While it was plugged into the pc? 

 Reflash: 

 http://beagleboard.org/latest-images 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Write to EEPROM on BBB?

2014-07-30 Thread karlkarpfen79
Am Mittwoch, 30. Juli 2014 11:14:05 UTC+2 schrieb lisarden:

 Write Protect pin is LOW-Active. This means that by grounding this pin you 
 do memory protection
 https://www.facebook.com/mentorel.company


Sure? EEPROM documentation says, write-protection is disabled when WP-input 
is pulled to Vss. On BBB, Vss is ground so pulling WP to ground should do 
the trick.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Maximum current on GPIO?

2014-07-30 Thread karlkarpfen79

Am Dienstag, 29. Juli 2014 20:52:22 UTC+2 schrieb Brandon I:

 sink 8mA



So setting a GPI to HIGH just by connecting it to 3.3V directly would be a 
problem? I assumed GPIO-inputs are always high-resistance!?

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Maximum current on GPIO?

2014-07-30 Thread PLyttle
BeagleBone Black System Reference Manual Rev C page 113| (in bright red 
font):

There are several precautions that need to me taken when working with the 
expansion
headers to prevent damage to the board.
1) Do not apply any voltages to any I/O pins when the board is not powered 
on.
2) Do not drive any external signals into the I/O pins until after the 
VDD_3V3B rail is up.
3) Do not apply any voltages that are generated from external sources.
4) If voltages are generated from the VDD_5V signal, those supplies must 
not become
active until after the VDD_3V3B rail is up.
5) If you are applying signals from other boards into the expansion 
headers, make sure
you power the board up after you power up the BeagleBone Black or make the
connections after power is applied on both boards.
Powering the processor via its I/O pins can cause damage to the processor.

Those kind of assumptions might kill your board.

LP

On Wednesday, July 30, 2014 12:38:31 PM UTC+2, karlka...@gmail.com wrote:


 Am Dienstag, 29. Juli 2014 20:52:22 UTC+2 schrieb Brandon I:

 sink 8mA



 So setting a GPI to HIGH just by connecting it to 3.3V directly would be a 
 problem? I assumed GPIO-inputs are always high-resistance!?



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Maximum current on GPIO?

2014-07-30 Thread karlkarpfen79
This doesn't answers my question. So to describe it more clear:

- board/CPU is powered and running
- SYS_RESETn is HIGH
- GPIO is configured as input
...so all preconditions mentioned in BBB manual are met.

Now when I want to set a HIGH signal to that GPI, can I connect it with 
BBBs 3.3V directly or is a resistor needed in order to keep this 8 mA sink 
limit?


Am Mittwoch, 30. Juli 2014 12:52:08 UTC+2 schrieb PLyttle:

 BeagleBone Black System Reference Manual Rev C page 113| (in bright red 
 font):

 There are several precautions that need to me taken when working with the 
 expansion
 headers to prevent damage to the board.
 1) Do not apply any voltages to any I/O pins when the board is not powered 
 on.
 2) Do not drive any external signals into the I/O pins until after the 
 VDD_3V3B rail is up.
 3) Do not apply any voltages that are generated from external sources.
 4) If voltages are generated from the VDD_5V signal, those supplies must 
 not become
 active until after the VDD_3V3B rail is up.
 5) If you are applying signals from other boards into the expansion 
 headers, make sure
 you power the board up after you power up the BeagleBone Black or make the
 connections after power is applied on both boards.
 Powering the processor via its I/O pins can cause damage to the processor.

 Those kind of assumptions might kill your board.

 LP

 On Wednesday, July 30, 2014 12:38:31 PM UTC+2, karlka...@gmail.com wrote:


 Am Dienstag, 29. Juli 2014 20:52:22 UTC+2 schrieb Brandon I:

 sink 8mA



 So setting a GPI to HIGH just by connecting it to 3.3V directly would be 
 a problem? I assumed GPIO-inputs are always high-resistance!?



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Maximum current on GPIO?

2014-07-30 Thread Dr. Michael J. Chudobiak

Now when I want to set a HIGH signal to that GPI, can I connect it with
BBBs 3.3V directly


Yes.


or is a resistor needed in order to keep this 8 mA
sink limit?


No. (You must observe the 8 mA limit, but connecting a GPIO to the 3.3V 
or gnd rails will not require anything close to 8 mA.)



-Mike

--
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups BeagleBoard group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Maximum current on GPIO?

2014-07-30 Thread kyle
A GPIO configured as an input will not draw substantial current from the line 
it's connected to.  It is sensitive to the charge level on the line and will 
not draw current from it (exempting the gate capacitor charge-up).  A GPIO that 
is set to OUTPUT a high signal is now a potential source of current.   If you 
hook that up to the + end of a motor it will try to power the motor with the 
output.  In that case you MUST insure that your circuit limits the current to a 
maximum of 6mA.  The same is true if you OUTPUT a low signal.  Hook that to the 
- lead on a motor and the + lead to supply and the CPU is now trying to absorb 
all the current from that motor and will go poof.  

So if you were to connect directly to the positive supply and say somehow that 
pin ever becomes an output that is low you now have a dead short through the 
I/O pin and at best you'll fry that pin or its whole bank, you'll likely kill 
the whole chip.  Since the I/O on these devices is programmatic I never like to 
connect a pin directly to the supply rails. 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Maximum current on GPIO?

2014-07-30 Thread kyle
A GPIO configured as an input will not draw substantial current from the line 
it's connected to.  It is sensitive to the charge level on the line and will 
not draw current from it (exempting the gate capacitor charge-up).  A GPIO that 
is set to OUTPUT a high signal is now a potential source of current.   If you 
hook that up to the + end of a motor it will try to power the motor with the 
output.  In that case you MUST insure that your circuit limits the current to a 
maximum of 6mA.  The same is true if you OUTPUT a low signal.  Hook that to the 
- lead on a motor and the + lead to supply and the CPU is now trying to absorb 
all the current from that motor and will go poof.  

So if you were to connect directly to the positive supply and say somehow that 
pin ever becomes an output that is low you now have a dead short through the 
I/O pin and at best you'll fry that pin or its whole bank, you'll likely kill 
the whole chip.  Since the I/O on these devices is programmatic I never like to 
connect a pin directly to the supply rails. 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BeagleBone Black not detected after partion and unplug usb cable

2014-07-30 Thread Chan Le Van
I fixed it. Just boot from the SD card.
Thanks.

On Wednesday, July 30, 2014 11:21:06 AM UTC+1, Chan Le Van wrote:

 Hi, Thanks for your answer but my board seems to be sleeping.
 Actually, in the first time I plug my board to the laptop, it works fine 
 with the power light turned on and 4 LEDS operate normally. But I want to 
 install the Ubuntu on it, so  I follow the instruction here:
 http://www.armhf.com/boards/beaglebone-black/bbb-sd-install/
 after finished the step g(Finally, commit the changes by selecting w to 
 ‘write’ the partition table and exit fdisk.), 
 I unplugged the usb cable. From that, when I connect the board by USB 
 cable again, then my board is not starting normally anyomre, the OS  in my 
 laptop is not showing the notification about new device has been plugged 
 into it and the LEDs are not lighting as well, just the power light in the 
 board turned on.
 I followed the link you posted but in this, it says that: Use the 
 provided microSD card to SD adapter or a USB adapter to connect the SD card 
 to your computer.
 So does it mean we have to use the external SD card which can communicate 
 with the board by the SD card slot and use it to to some next steps to boot 
 ? When I receive my board, all I have are just the board without the 
 external SD card and the USB cable ! So in my situation, what should I do 
 to make my board return to the original state ?
 Thanks for your help.


 On Wednesday, July 30, 2014 1:42:24 AM UTC+1, RobertCNelson wrote:

 On Tue, Jul 29, 2014 at 5:50 PM, Chan Le Van chan...@gmail.com wrote: 
  Hi everyone. Can someone help with this problem. Thanks a million in 
 advance. 
  I bought a new BeagleBone Black. I followed the instruction in the 
 beableboard website to install embedded Ubuntu on it. The first step is 
 using the fdisk on my laptop to partition. After I finished this step, I 
 unplugged the usb cable(without using the safe remove device). From that 
 time, when i try to plug the Board using the usb cable, the LEDs in the 
 board are not lighting anymore, there's no new mounted device infomation on 
 my Ubuntu laptop and the ethernet periodically shows wired connection 
 disconnected. Please help me make it alive again. Thank you very much. 
 Chan.
 So... You re-partitioned the BeagleBone Black over the usb-otg 
 cable? While it was plugged into the pc? 

 Reflash: 

 http://beagleboard.org/latest-images 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BeagleBone Black not detected after partion and unplug usb cable

2014-07-30 Thread Robert Nelson
On Wed, Jul 30, 2014 at 8:12 AM, Chan Le Van chanle...@gmail.com wrote:
 I fixed it. Just boot from the SD card.
 Thanks.

Correct..

So back to the issue. Those directions are targetting a microSD card
that you insert into the bbb. Not running on the flash drive that
shows up when you plug the bbb into your pc.

Regards,


-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Join BBBdrone cape project

2014-07-30 Thread hkanekal
 what is happening to my posts.. not one is showing up!

On Friday, July 25, 2014 6:19:08 AM UTC-7, embeddedcomputer.nl wrote:

 Joining the open source project BBBdrone?  Let us know!  

 We are currently looking for people who wants to start/join the OpenSource 
  BBBdrone project.

 Our aim will be a affordable BBB cape that together with a BBB and 3D 
 printed frame can be controlled by a Android/Apple phone/tablet. 

 Funding by Kickstarter or indiegogo


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Join BBBdrone cape project

2014-07-30 Thread hkanekal
Have you looked at the project of quad copter by group of Rose-Hulman 
students on this forum? Search for Beaglebone Quadcopter!
Also this 
link: 
https://lh4.googleusercontent.com/-kgxIfN6_fL8/U3Ffs2ZPgsI/AFM/u8omMlHOvHY/s1600/2013-12-18_14-34-02_876.jpg

(formatting screwed up on this web interface :-( sorry )

Anyway are you the same people? Else drop me a line, I may be interested...
Thanks
HK

On Friday, July 25, 2014 10:31:21 AM UTC-7, embeddedcomputer.nl wrote:

 BBBs are proven hardware, Agile software development can do the trick

 Do not see problems but opportunities Before Google Altavista ruled 
 the world.

 Op vrijdag 25 juli 2014 18:35:29 UTC+2 schreef don:

  On 07/25/2014 06:19 AM, embeddedcomputer.nl wrote:
  
 Joining the open source project BBBdrone?  Let us know!  

 We are currently looking for people who wants to start/join the 
 OpenSource  BBBdrone project.

 Our aim will be a affordable BBB cape that together with a BBB and 3D 
 printed frame can be controlled by a Android/Apple phone/tablet. 

 Funding by Kickstarter or indiegogo
  -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.



 Why would this need to be funded by kickstarter or indiegogo campaign? 
 Me personally this turns me off the project regardless. 

 How is this going to be better/different than the current AP's on the 
 market, such as APM, UDB, PixHawk, Paparazzi, Open Pilot or the many other 
 proven solutions? What kind of testing is going to be done and currently 
 done to prove the AP software/hardware? How long has the flight software 
 been developed? What limitations will this board have? What control algos 
 are being used? 
  


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Join BBBdrone cape project

2014-07-30 Thread hkanekal
https://lh4.googleusercontent.com/-kgxIfN6_fL8/U3Ffs2ZPgsI/AFM/u8omMlHOvHY/s1600/2013-12-18_14-34-02_876.jpg

On Friday, July 25, 2014 6:19:08 AM UTC-7, embeddedcomputer.nl wrote:

 Joining the open source project BBBdrone?  Let us know!  

 We are currently looking for people who wants to start/join the OpenSource 
  BBBdrone project.

 Our aim will be a affordable BBB cape that together with a BBB and 3D 
 printed frame can be controlled by a Android/Apple phone/tablet. 

 Funding by Kickstarter or indiegogo


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Using SPI in a kernel module

2014-07-30 Thread nwkoch
When I insmod ifx6x60.ko, its probe method isn't called either. Is there 
anything else I have to do?

Am Mittwoch, 30. Juli 2014 04:06:19 UTC+2 schrieb liyaoshi:

 Actually , I have write a driver based on iMX6 and V850 , implement via 
 tty driver .

 And suggest you follow kernel driver ifx6x60.c

 Regards  


 2014-07-30 3:13 GMT+08:00 John Syn john...@gmail.com javascript::


 From: nwk...@gmail.com javascript:
 Reply-To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript:
 Date: Tuesday, July 29, 2014 at 7:33 AM
 To: beagl...@googlegroups.com javascript: beagl...@googlegroups.com 
 javascript:
 Subject: Re: [beagleboard] Using SPI in a kernel module

 Thanks, John.

 I Iooked at kernel/drivers/iio/dac/ad/5064.c

 There's the following struct which is passed to *spi_register_driver()*:
 static struct spi_driver ad5064_spi_driver = {
 .driver = {
.name = ad5064,
.owner = THIS_MODULE,
 },
 .probe = ad5064_spi_probe,
 .remove = ad5064_spi_remove,
 .id_table = ad5064_spi_ids,
 };

 I compiled the module and loaded it but the probe function never gets 
 called. Why?

 From this I can see that this driver isn’t DeviceTree enabled so I’m not 
 sure which SPI interface it is using. Either you can add the devicetree 
 support to this driver so that you can specify which SPI interface to use, 
 or e-mail the Linux-IIO mailing list and see how to use this driver. 

 Regards,
 John




 Am Montag, 28. Juli 2014 18:09:34 UTC+2 schrieb john3909:


 From: Nils nwk...@gmail.com
 Reply-To: beagl...@googlegroups.com beagl...@googlegroups.com
 Date: Monday, July 28, 2014 at 7:00 AM
 To: beagl...@googlegroups.com beagl...@googlegroups.com
 Subject: [beagleboard] Using SPI in a kernel module

 Hello,

 I'm currently working on a kernel module which needs to communicate via 
 SPI to an external microchip.

 I used the cape manager to enable SPI. The device is accessible through 
 /dev/spidev1.0.
 But since it's a kernel module, I guess it's not recommended to access 
 files via sys_open()?

 Another approach I found would be adding a struct to 
 *arch/arm/mach-omap2/board-am335xevm.c 
 *and then use *spi_register_driver()* in my kernel module. But in my 
 kernel sources (3.8.13) this file doesn't exist.

 There is no board files since the introduction of device tree.



 What would be the right way to use SPI in my kernel module?

 Look at examples in /drivers/staging/iio or /drivers/iio

 There are plenty of examples of using SPI calls in a kernel module. 

 Use the power of GIT to find what you are looking for. In the Kernel 
 source do the following:

 git grep spi_sync_transfer

 Regards,
 John



 Regards,
 Nils

 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google 
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.

  -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] RIP Never Used BBB

2014-07-30 Thread candyfliptv

hello people, please excuse my for my Tarzan English. 
first connect my BBB with a 5V supply 4A with the negative in the middle, might 
have killed her so easily?
now with the positive in the middle got hot and nothing more happend.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Full HD video out will cause $45 to ???

2014-07-30 Thread jnjservicesaus
Will there be cost hike if BBB has got a new chip to accomodate full HD 
vedeo out?


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] SHT20 I2C temperature sensor isn't detected

2014-07-30 Thread Tatsuya Sasaki
Hi all.
I hooked up my sensirion SHT20 temp/humid sensor to my BBB.
http://www.sensirion.com/en/products/humidity-temperature/humidity-sensor-sht20/

-SHT20-  -BBB-
GND --- P9-01
VDD --- P9-03
SCL --- P9-19
SDA --- P9-20

The datasheet says the address is 0100 (0x40).

 5.3 Sending a Command
 After sending the Start condition, the subsequent I2C 
 header consists of the 7-bit I2C device address ‘1000’000’
 and an SDA direction bit (Read R: ‘1’, Write W: ‘0’). 
 The wiring is like the following.


I expected to appear the sensor on I2C-1's address 0x40.
But it isn't detected:

$ sudo i2cdetect -r -y 1

 0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f

00:  -- -- -- -- -- -- -- -- -- -- -- -- -- 

10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

50: -- -- -- -- UU UU UU UU -- -- -- -- -- -- -- -- 

60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

70: -- -- -- -- -- -- -- --

and also

$ sudo i2cdetect -r -y 0

 0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f

00:  -- -- -- -- -- -- -- -- -- -- -- -- -- 

10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

20: -- -- -- -- UU -- -- -- -- -- -- -- -- -- -- -- 

30: -- -- -- -- UU -- -- -- -- -- -- -- -- -- -- -- 

40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

50: UU -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 

70: UU -- -- -- -- -- -- --

I checked the sensor worked as a normal I2C device on my Arduino. 

Do I need to install some drivers on BBB for the sensor?
Or do I missed some procedures?

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Is a Minimal install of Wheezy possible?

2014-07-30 Thread vmtech2007


On Friday, July 25, 2014 8:43:18 PM UTC-5, RobertCNelson wrote:

 On Fri, Jul 25, 2014 at 8:23 AM, Robert Nelson robert...@gmail.com 
 javascript: wrote: 
  On Fri, Jul 25, 2014 at 6:02 AM,  vmtec...@gmail.com javascript: 
 wrote: 
  I tried again with the same result. Using GNU Wget 1.13.4 Thanks for 
 looking 
  into it. 
  
  I should know better... Please pastebin.com your full terminal log 
  when your run the ./mk_mmc.sh script. 

 ah.. found it.. 

 git pull 

 and you'll get all the fixes... 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


Ok. Got it to run and install. Have a couple of questions. It looks like it 
is set to TERM=vt102. I checked .bashrc but it wasn't in there. I would 
like to change it to vt100. Regarding the video, it looks like it is set 
for 132 columns. Can this be changed? Also, is there a way to make it boot 
without holding down the boot button? Thanks
 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] usb write permission

2014-07-30 Thread Robert Nelson
On Wed, Jul 30, 2014 at 7:00 AM,  evanspron...@gmail.com wrote:
 Hi,

  I have a problem I need write permission for my usb device.
 This works: sudo chmod a+w /dev/bus/usb/001/002

 If I unplug and replug it again the permissions are changed back to read
 only.

  How do I set the default permissions to read and write?

setup a udev rule for your device.

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: i wanna use highlevel file io multi use

2014-07-30 Thread Craig Markwardt


On Sunday, July 27, 2014 6:55:57 AM UTC-4, kthab...@gmail.com wrote:

 i use high level file io to control GPIO pins

 i wanna use like general MCU port register (use 8bit). so i'm writing 
 eight file functions.
 but appear this compile error.

 /tmp/ccP4wrXQ.o: In function `main':
 led_blink.c:(.text+0x598): undefined reference to `pin_wirte'
 collect2: ld returned 1 exit status

 when i use only two 'pin_write' function, there is no error.
 what's wrong is this??

  
The error message says it all. Check for typos.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: BeagleBoard Rev B4 Ubuntu Boot issue

2014-07-30 Thread plumjpantech
As an update, I can get my beagleboard working with the Angstrom distro and 
the Gentoo distro following their basic setup.

Is there a trick to getting Ubuntu to run on a Beagleboard?

Lucid and Maverick ARM port is armv7 and higher compatible

It is an ARM 7 so anything over 10.04 should be good.  I've tried 12.04 and 
14 without luck.
Both logs point to missing .so files.

Going to try a rootstock and see if I can get that to work.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Full HD video out will cause $45 to ???

2014-07-30 Thread Gerald Coley
Well, considering the fact that it will take a whole new processor and
a totally new design, I would say yes it will be more than the current $55
price. Right now it can do 1920x1080 @ 24FPS.

Gerald



On Tue, Jul 29, 2014 at 10:50 PM, jnjservices...@gmail.com wrote:

 Will there be cost hike if BBB has got a new chip to accomodate full HD
 vedeo out?


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] RIP Never Used BBB

2014-07-30 Thread Gerald Coley
Yep. That will kill it.

Gerald


On Tue, Jul 29, 2014 at 10:42 PM, candyfli...@gmail.com wrote:


 hello people, please excuse my for my Tarzan English.
 first connect my BBB with a 5V supply 4A with the negative in the middle,
 might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] RIP Never Used BBB

2014-07-30 Thread kyle
Reverse polarity is pretty well-known way to kill many devices.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] BBB Debian Corrupt LCD

2014-07-30 Thread James S


We have a built a custom board with an LCD interface to drive a 1024 x 768 
pixel LVDS panel, 16BPP. It works great on the Beaglebone White with the 
old Angstrom 3.2 using the board file configuration.

We want to use the Beaglebone Black so we built up a system from 
http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#2014-07-22 . I added a 
dts using the same parameters from the old board file but the graphics are 
blurred and corrupted. The card I made boots on the White also and gives 
the same results as on the Black. See images below.

I’ve fiddled with the panel timings but they don’t seem to have any effect.

Does anyone have any idea what is wrong and how do I fix it? 

Regards,

James

 

This is part of the (good) image from the frame buffer.

https://lh6.googleusercontent.com/-4paVjDS0NME/U9j9QP7ZvyI/GjY/Tq2jYoa6r0Y/s1600/screen1.jpg











This is a photo of the output on the screen, showing a similar area.

https://lh6.googleusercontent.com/-qR11mE7KhYU/U9j9wMohRZI/Gjg/_lhBqXIQQyk/s1600/screen2.jpg








 

The following is the panel section of the dts file, based on an LCD4 dts:-

 

 /* Settings for AUO G121XN01 / mita cape: */

 panel {

compatible = tilcdc,panel;

pinctrl-names = default;

pinctrl-0 = bone_mita_cape_lcd_pins;

panel-info {

   ac-bias   = 255;

   ac-bias-intrpt= 0;

   dma-burst-sz  = 16;

   bpp   = 16;

   fdd   = 0x80;

   tft-alt-mode  = 0;

   stn-565-mode  = 0;

   mono-8bit-mode= 0;

   sync-edge = 0;

   sync-ctrl = 1;

   raster-order  = 0;

   fifo-th   = 0;

   invert-pxl-clk= 0;

};

display-timings {

   native-mode = timing0;

   timing0: 1024x768 {

  hactive = 1024;

  vactive = 768;

  hback-porch = 80;

  hfront-porch= 48;

  hsync-len   = 32;

  vback-porch = 15;

  vfront-porch= 3;

  vsync-len   = 4;

  clock-frequency = 5600;

  hsync-active= 0;

  vsync-active= 0;

   };

};

 };

 

 fb {

compatible = ti,am33xx-tilcdc;

reg = 0x4830e000 0x1000;

interrupt-parent = intc;

interrupts = 36;

ti,hwmods = lcdc;

ti,power-gpio = gpio1 2 0x0;

ti,allow-non-reduced-blanking-modes;

 };

 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BBB Debian Corrupt LCD

2014-07-30 Thread Gerald Coley
If you read the manual, you will see that these lines are also connected to
the HDMI chip. To use it also as an LCD panel, you need to buffer these
signals and account for any noise that may be introduced as a result of
the loading of these 6ma drive signals my the HDMI chip.

Gerald



On Wed, Jul 30, 2014 at 9:16 AM, James S s190...@gmail.com wrote:

 We have a built a custom board with an LCD interface to drive a 1024 x 768
 pixel LVDS panel, 16BPP. It works great on the Beaglebone White with the
 old Angstrom 3.2 using the board file configuration.

 We want to use the Beaglebone Black so we built up a system from
 http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#2014-07-22 . I added
 a dts using the same parameters from the old board file but the graphics
 are blurred and corrupted. The card I made boots on the White also and
 gives the same results as on the Black. See images below.

  I’ve fiddled with the panel timings but they don’t seem to have any
 effect.

 Does anyone have any idea what is wrong and how do I fix it?

 Regards,

 James



  This is part of the (good) image from the frame buffer.


 https://lh6.googleusercontent.com/-4paVjDS0NME/U9j9QP7ZvyI/GjY/Tq2jYoa6r0Y/s1600/screen1.jpg











 This is a photo of the output on the screen, showing a similar area.


 https://lh6.googleusercontent.com/-qR11mE7KhYU/U9j9wMohRZI/Gjg/_lhBqXIQQyk/s1600/screen2.jpg










 The following is the panel section of the dts file, based on an LCD4 dts:-



  /* Settings for AUO G121XN01 / mita cape: */

  panel {

 compatible = tilcdc,panel;

 pinctrl-names = default;

 pinctrl-0 = bone_mita_cape_lcd_pins;

 panel-info {

ac-bias   = 255;

ac-bias-intrpt= 0;

dma-burst-sz  = 16;

bpp   = 16;

fdd   = 0x80;

tft-alt-mode  = 0;

stn-565-mode  = 0;

mono-8bit-mode= 0;

sync-edge = 0;

sync-ctrl = 1;

raster-order  = 0;

fifo-th   = 0;

invert-pxl-clk= 0;

 };

 display-timings {

native-mode = timing0;

timing0: 1024x768 {

   hactive = 1024;

   vactive = 768;

   hback-porch = 80;

   hfront-porch= 48;

   hsync-len   = 32;

   vback-porch = 15;

   vfront-porch= 3;

   vsync-len   = 4;

   clock-frequency = 5600;

   hsync-active= 0;

   vsync-active= 0;

};

 };

  };



  fb {

 compatible = ti,am33xx-tilcdc;

 reg = 0x4830e000 0x1000;

 interrupt-parent = intc;

 interrupts = 36;

 ti,hwmods = lcdc;

 ti,power-gpio = gpio1 2 0x0;

 ti,allow-non-reduced-blanking-modes;

  };



 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: BBB Debian Corrupt LCD

2014-07-30 Thread James S
Hi Gerald, thanks for that reminder.

However, there should be no such loading on the White since it doesn't have 
HDMI on board? The problem also occurs on the White. What else could it be?

Regards,
James

On Wednesday, July 30, 2014 3:16:18 PM UTC+1, James S wrote:

 We have a built a custom board with an LCD interface to drive a 1024 x 768 
 pixel LVDS panel, 16BPP. It works great on the Beaglebone White with the 
 old Angstrom 3.2 using the board file configuration.

 We want to use the Beaglebone Black so we built up a system from 
 http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#2014-07-22 . I added 
 a dts using the same parameters from the old board file but the graphics 
 are blurred and corrupted. The card I made boots on the White also and 
 gives the same results as on the Black. See images below.

 I’ve fiddled with the panel timings but they don’t seem to have any effect.

 Does anyone have any idea what is wrong and how do I fix it? 

 Regards,

 James

  

 This is part of the (good) image from the frame buffer.


 https://lh6.googleusercontent.com/-4paVjDS0NME/U9j9QP7ZvyI/GjY/Tq2jYoa6r0Y/s1600/screen1.jpg











 This is a photo of the output on the screen, showing a similar area.


 https://lh6.googleusercontent.com/-qR11mE7KhYU/U9j9wMohRZI/Gjg/_lhBqXIQQyk/s1600/screen2.jpg








  

 The following is the panel section of the dts file, based on an LCD4 dts:-

  

  /* Settings for AUO G121XN01 / mita cape: */

  panel {

 compatible = tilcdc,panel;

 pinctrl-names = default;

 pinctrl-0 = bone_mita_cape_lcd_pins;

 panel-info {

ac-bias   = 255;

ac-bias-intrpt= 0;

dma-burst-sz  = 16;

bpp   = 16;

fdd   = 0x80;

tft-alt-mode  = 0;

stn-565-mode  = 0;

mono-8bit-mode= 0;

sync-edge = 0;

sync-ctrl = 1;

raster-order  = 0;

fifo-th   = 0;

invert-pxl-clk= 0;

 };

 display-timings {

native-mode = timing0;

timing0: 1024x768 {

   hactive = 1024;

   vactive = 768;

   hback-porch = 80;

   hfront-porch= 48;

   hsync-len   = 32;

   vback-porch = 15;

   vfront-porch= 3;

   vsync-len   = 4;

   clock-frequency = 5600;

   hsync-active= 0;

   vsync-active= 0;

};

 };

  };

  

  fb {

 compatible = ti,am33xx-tilcdc;

 reg = 0x4830e000 0x1000;

 interrupt-parent = intc;

 interrupts = 36;

 ti,hwmods = lcdc;

 nbs
 ...

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: BBB Debian Corrupt LCD

2014-07-30 Thread Gerald Coley
Still could be the same issue. What buffer are you using to drive the
signals to the LVDS device? Are the trace lengths match to insure that all
the setup and hold times are met by having all signals with the same delay?

Gerald



On Wed, Jul 30, 2014 at 9:40 AM, James S s190...@gmail.com wrote:

 Hi Gerald, thanks for that reminder.

 However, there should be no such loading on the White since it doesn't
 have HDMI on board? The problem also occurs on the White. What else could
 it be?

 Regards,
 James


 On Wednesday, July 30, 2014 3:16:18 PM UTC+1, James S wrote:

 We have a built a custom board with an LCD interface to drive a 1024 x
 768 pixel LVDS panel, 16BPP. It works great on the Beaglebone White with
 the old Angstrom 3.2 using the board file configuration.

 We want to use the Beaglebone Black so we built up a system from
 http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#2014-07-22 . I
 added a dts using the same parameters from the old board file but the
 graphics are blurred and corrupted. The card I made boots on the White also
 and gives the same results as on the Black. See images below.

 I’ve fiddled with the panel timings but they don’t seem to have any
 effect.

 Does anyone have any idea what is wrong and how do I fix it?

 Regards,

 James



 This is part of the (good) image from the frame buffer.


 https://lh6.googleusercontent.com/-4paVjDS0NME/U9j9QP7ZvyI/GjY/Tq2jYoa6r0Y/s1600/screen1.jpg











 This is a photo of the output on the screen, showing a similar area.


 https://lh6.googleusercontent.com/-qR11mE7KhYU/U9j9wMohRZI/Gjg/_lhBqXIQQyk/s1600/screen2.jpg










 The following is the panel section of the dts file, based on an LCD4 dts:-



  /* Settings for AUO G121XN01 / mita cape: */

  panel {

 compatible = tilcdc,panel;

 pinctrl-names = default;

 pinctrl-0 = bone_mita_cape_lcd_pins;

 panel-info {

ac-bias   = 255;

ac-bias-intrpt= 0;

dma-burst-sz  = 16;

bpp   = 16;

fdd   = 0x80;

tft-alt-mode  = 0;

stn-565-mode  = 0;

mono-8bit-mode= 0;

sync-edge = 0;

sync-ctrl = 1;

raster-order  = 0;

fifo-th   = 0;

invert-pxl-clk= 0;

 };

 display-timings {

native-mode = timing0;

timing0: 1024x768 {

   hactive = 1024;

   vactive = 768;

   hback-porch = 80;

   hfront-porch= 48;

   hsync-len   = 32;

   vback-porch = 15;

   vfront-porch= 3;

   vsync-len   = 4;

   clock-frequency = 5600;

   hsync-active= 0;

   vsync-active= 0;

};

 };

  };



  fb {

 compatible = ti,am33xx-tilcdc;

 reg = 0x4830e000 0x1000;

 interrupt-parent = intc;

 interrupts = 36;

 ti,hwmods = lcdc;

 nbs
 ...

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: BBB Debian Corrupt LCD

2014-07-30 Thread James S
Gerald,

The pins are connected directly to the LVDS chip, a DS90C383BMT. Trace 
lengths are short and matched. 
But on the same board with the older software, it worked fine - what would 
have changed to require the use of a buffer?

Regards,
James

On Wednesday, July 30, 2014 3:43:38 PM UTC+1, Gerald wrote:

 Still could be the same issue. What buffer are you using to drive the 
 signals to the LVDS device? Are the trace lengths match to insure that all 
 the setup and hold times are met by having all signals with the same delay?

 Gerald



 On Wed, Jul 30, 2014 at 9:40 AM, James S s19...@gmail.com javascript: 
 wrote:

 Hi Gerald, thanks for that reminder.

 However, there should be no such loading on the White since it doesn't 
 have HDMI on board? The problem also occurs on the White. What else could 
 it be?

 Regards,
 James


 On Wednesday, July 30, 2014 3:16:18 PM UTC+1, James S wrote:

 We have a built a custom board with an LCD interface to drive a 1024 x 
 768 pixel LVDS panel, 16BPP. It works great on the Beaglebone White with 
 the old Angstrom 3.2 using the board file configuration.

 We want to use the Beaglebone Black so we built up a system from 
 http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#2014-07-22 . I 
 added a dts using the same parameters from the old board file but the 
 graphics are blurred and corrupted. The card I made boots on the White also 
 and gives the same results as on the Black. See images below.

 I’ve fiddled with the panel timings but they don’t seem to have any 
 effect.

 Does anyone have any idea what is wrong and how do I fix it? 

 Regards,

 James

  

 This is part of the (good) image from the frame buffer.


 https://lh6.googleusercontent.com/-4paVjDS0NME/U9j9QP7ZvyI/GjY/Tq2jYoa6r0Y/s1600/screen1.jpg











 This is a photo of the output on the screen, showing a similar area.


 https://lh6.googleusercontent.com/-qR11mE7KhYU/U9j9wMohRZI/Gjg/_lhBqXIQQyk/s1600/screen2.jpg








  

 The following is the panel section of the dts file, based on an LCD4 
 dts:-

  

  /* Settings for AUO G121XN01 / mita cape: */

  panel {

 compatible = tilcdc,panel;

 pinctrl-names = default;

 pinctrl-0 = bone_mita_cape_lcd_pins;

 panel-info {

ac-bias   = 255;

ac-bias-intrpt= 0;

dma-burst-sz  = 16;

bpp   = 16;

fdd   = 0x80;

tft-alt-mode  = 0;

stn-565-mode  = 0;

mono-8bit-mode= 0;

sync-edge = 0;

sync-ctrl = 1;

raster-order  = 0;

fifo-th   = 0;

invert-pxl-clk= 0;

 };

 display-timings {

native-mode = timing0;

timing0: 1024x768 {

   hactive = 1024;

   vactive = 768;

   hback-porch = 80;

   hfront-porch= 48;

   hsync-len   = 32;

   vback-porch = 15;

   vfront-porch= 3;

   vsync-len   = 4;

   clock-frequency = 5600;

   hsync-active= 0;

   vsync-active= 0;

};

 };

  };

  

  fb {

 compatible = ti,am33xx-tilcdc;

 reg = 0x4830e000 0x1000;

 interrupt-parent = intc;

 interrupts = 36;

 ti,hwmods = lcdc;

 nbs
 ...

  -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are 

Re: [beagleboard] Re: Join BBBdrone cape project

2014-07-30 Thread David Funk
Are you registered?  Your post has appeared at least 3 times . . .



-david


On Tue, Jul 29, 2014 at 11:43 PM, hkane...@gmail.com wrote:

  what is happening to my posts.. not one is showing up!


 On Friday, July 25, 2014 6:19:08 AM UTC-7, embeddedcomputer.nl wrote:

 Joining the open source project BBBdrone?  Let us know!

 We are currently looking for people who wants to start/join the
 OpenSource  BBBdrone project.

 Our aim will be a affordable BBB cape that together with a BBB and 3D
 printed frame can be controlled by a Android/Apple phone/tablet.

 Funding by Kickstarter or indiegogo

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Is a Minimal install of Wheezy possible?

2014-07-30 Thread William Hermans
Look at /etc/inittab, and note the example. If you scroll down to the
bottom the define you're looking for *is* probably there.

Sorry for the mostly re post, typo correction . . .


On Wed, Jul 30, 2014 at 9:43 AM, William Hermans yyrk...@gmail.com wrote:

 Look at /etc/inittab, and note the example. If you scroll down to the
 bottom the define you're looking for if probably there.


 On Tue, Jul 29, 2014 at 8:52 PM, vmtech2...@gmail.com wrote:



 On Friday, July 25, 2014 8:43:18 PM UTC-5, RobertCNelson wrote:

 On Fri, Jul 25, 2014 at 8:23 AM, Robert Nelson robert...@gmail.com
 wrote:
  On Fri, Jul 25, 2014 at 6:02 AM,  vmtec...@gmail.com wrote:
  I tried again with the same result. Using GNU Wget 1.13.4 Thanks for
 looking
  into it.
 
  I should know better... Please pastebin.com your full terminal log
  when your run the ./mk_mmc.sh script.

 ah.. found it..

 git pull

 and you'll get all the fixes...

 Regards,

 --
 Robert Nelson
 http://www.rcn-ee.com/


 Ok. Got it to run and install. Have a couple of questions. It looks like
 it is set to TERM=vt102. I checked .bashrc but it wasn't in there. I would
 like to change it to vt100. Regarding the video, it looks like it is set
 for 132 columns. Can this be changed? Also, is there a way to make it boot
 without holding down the boot button? Thanks


 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: First time using beagle board-xm

2014-07-30 Thread Can Akıncı
Hi. Did you manage to solve your problem? 

If not, you can try these instructions to see whether there is a problem in 
your Beagleboard hardware. 
http://wlbeagleboard.wordpress.com/2014/07/27/installing-ubuntu-14-04-on-beagleboard-xm/

17 Temmuz 2014 Perşembe 14:49:10 UTC+3 tarihinde Mohd. Shahrukh Khan yazdı:

 i have make a bootable sd card but when i put sd card in beagleboard sd 
 card slot the screen is looking white .its not showing any thing .
 i press reset button while holding user button but it still shows nothing .
 i have make sd card bootable in the following ways i have make two files 
 setup_sd and load_sd.
 (setup_sd) Inside setup_sd:



 #!/bin/sh
 # As per instructions:
 # http://elinux.org/BeagleBoardBeginners
  
 if [ $# -lt 1 ]; then
echo example usage: $0 /dev/sdb
exit 1
 fi
  
 DRIVE=$1
  
 dd if=/dev/zero of=$DRIVE bs=1024 count=1024
  
 SIZE=`fdisk -l $DRIVE | grep Disk | awk '{print $5}'`
  
 echo DISK SIZE - $SIZE bytes
  
 CYLINDERS=`echo $SIZE/255/63/512 | bc`
  
 echo CYLINDERS - $CYLINDERS
  
 {
 echo ,9,0x0C,*
 echo ,,,-
 } | sfdisk -D -H 255 -S 63 -C $CYLINDERS $DRIVE
  
 mkfs.vfat -F 32 -n boot ${DRIVE}1
 mke2fs -j -L rootfs ${DRIVE}2







 now inside load_sd:



 #!/bin/sh
 # As per instructions:
 # http://elinux.org/BeagleBoardBeginners
  
 if [ $# -lt 1 ]; then
echo example usage: $0 /dev/sdb
exit 1
 fi
  
 DISK=$1
  
 if [ -e Angstrom-Beagleboard* -a -e MLO -a -e u-boot* -a -e uImage* -a -e 
 modules* ]; then
 echo All files found okay... 
  
 echo Mounting ${DISK}1 and ${DISK}2
 mkdir /mnt/sd1; mount ${DISK}1 /mnt/sd1
 mkdir /mnt/sd2; mount ${DISK}2 /mnt/sd2
 sleep 2
  
 echo Copying to ${DISK}1 and ${DISK}2
 cp MLO u-boot.bin /mnt/sd1
 cp uImage* /mnt/sd1/uImage
 tar -xvf Angstrom-Beagleboard-demo-image*.tar.bz2 -C /mnt/sd2
 tar -xvf modules-2.6.*.tgz -C /mnt/sd2
  
 echo Unmounting ${DISK}1 and ${DISK}2
 umount ${DISK}1; umount ${DISK}2
 rm -rf /mnt/sd1 /mnt/sd2
 echo Done
  
 else
 echo Files missing!
 echo Downloading required files... this may take some time.
sleep 2
  
 wget 
 http://www.angstrom-distribution.org/demo/beagleboard/Angstrom-Beagleboard-demo-image-glibc-ipk-2010.3-beagleboard.rootfs.tar.bz2
 wget http://www.angstrom-distribution.org/demo/beagleboard/MLO
 wget http://www.angstrom-distribution.org/demo/beagleboard/u-boot.bin
 wget 
 http://www.angstrom-distribution.org/demo/beagleboard/uImage-2.6.29-r47-beagleboard.bin
 wget 
 http://www.angstrom-distribution.org/demo/beagleboard/modules-2.6.29-r47-beagleboard.tgz
  
echo Finished downloading files.  Simply run $0 /dev/sdX again to 
 load files to SD card.
 fi







 in this way i make sd card bootable but my beagle board is not 
 working..plzzz help


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: I need to build ubuntu Rootfs from scratch -help needed

2014-07-30 Thread Can Akıncı
You can check my website and easily install ubuntu on your BBxm. 
wlbeagleboard.wordpress.com

3 Mayıs 2014 Cumartesi 08:29:20 UTC+3 tarihinde pavan yazdı:

 Hello ,

 I have plans to build ubuntu rootfs for Beagleboard xm rev C on my 
 own.Please help me for a good start .Thanks

 I googled but there are lot many sources ,I am not able to decide what to 
 follow and what not.


 Regards
 Pavan


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Board won't flash

2014-07-30 Thread Tristan Phillips
Can anyone help figure out what is going wrong here?


mmc1: new high speed MMC card at address 0001
[   10.497469] mmcblk1: mmc1:0001 MMC02G 1.78 GiB 
[   10.502697] mmcblk1boot0: mmc1:0001 MMC02G partition 1 1.00 MiB
[   10.509831] mmcblk1boot1: mmc1:0001 MMC02G partition 2 1.00 MiB
[   10.518332]  mmcblk1: unknown partition table
[   10.524548]  mmcblk1boot1: unknown partition table
[   10.531366] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data 
mode. Opts: (null)
[   10.540032]  mmcblk1boot0: unknown partition table
[   10.545638] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
[   10.557100] devtmpfs: mounted
[   10.560585] Freeing init memory: 240K
[   10.612364] usb 1-1.2: new high-speed USB device number 3 using musb-hdrc
[   10.731178] usb 1-1.2: New USB device found, idVendor=148f, 
idProduct=5370
[   10.738415] usb 1-1.2: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[   10.746055] usb 1-1.2: Product: 802.11 n WLAN
[   10.750607] usb 1-1.2: Manufacturer: Ralink
[   10.754990] usb 1-1.2: SerialNumber: 1.0
grep: /proc/cmdline: No such file or directory
[   10.989176] Kernel panic - not syncing: Attempted to kill init! 
exitcode=0x0200
[   10.989176] 
[   10.998766] [c0010f5d] (unwind_backtrace+0x1/0x98) from [c0494903] 
(panic+0x5b/0x158)
[   11.007319] [c0494903] (panic+0x5b/0x158) from [c0032ea9] 
(do_exit+0x5f5/0x674)
[   11.015311] [c0032ea9] (do_exit+0x5f5/0x674) from [c0032f6b] 
(do_group_exit+0x27/0x6c)
[   11.023950] [c0032f6b] (do_group_exit+0x27/0x6c) from [c0032fbd] 
(__wake_up_parent+0x1/0x18)
[   11.033132] [c0032fbd] (__wake_up_parent+0x1/0x18) from [c000c741] 
(ret_fast_syscall+0x1/0x46)

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Cannot boot from microsd

2014-07-30 Thread John Syn

From:  Mario Giammarco mgiamma...@gmail.com
Reply-To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Date:  Wednesday, July 30, 2014 at 10:02 AM
To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Subject:  [beagleboard] Cannot boot from microsd

 Hello,
 I am trying to boot from microsd.
 
 1) I have prepared an 8gb sdhc, tried with asterisk image and with debian
 image from beagleboard site
 2) I have checked that sd contains boot images
 3) I have attached beagleboard power cable keeping user/boot button pressed
 
 It boots always internal angstrom image
 
 What can I do? How can I debug?
Update u-boot on the eMMC

Regards,
John
 
 
 Thanks,
 Mario
 
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Board won't flash

2014-07-30 Thread Robert Nelson
On Wed, Jul 30, 2014 at 12:35 PM, Tristan Phillips
tris.phill...@gmail.com wrote:
 Indeed, but why would this be happening?

 3.8.13-bone62 is the version...

Considering i haven't released any 'flasher' images with that kernel.
You are obviously doing something on your own to create a custom
image.  Since I don't have a crystal ball.

Tell us what you are doing...

Otherwise, how are we sup-post to help?

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Board won't flash

2014-07-30 Thread Robert Nelson
On Wed, Jul 30, 2014 at 12:51 PM, Tristan Phillips
tris.phill...@gmail.com wrote:
 OK, here goes :)

 Downloaded BBB-eMMC-flasher-ubuntu-14.04-console-armhf-2014-07-06-2gb and
 flashed to SD card

 git clone https://github.com/RobertCNelson/bb-kernel.git
 cd bb-kernel/
 git checkout origin/am33x-v3.8 -b tmp
 ./build_kernel.sh

 Deselected TI ethernet drivers in the menuconfig.  Thats all.
 Waited for build to complete.
 tools/install_kernel.sh

So, at this point, you've removed the initrd.img from the flasher
microSD card...

 Waited for copy
 Ejected and inserted into BBB
 Attempted boot
 Cried
 Posted asking for help

The flasher relies on a lot of things to be setup properly.  By
removing one, it falls apart like a house of cards..

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Board won't flash

2014-07-30 Thread Robert Nelson
On Wed, Jul 30, 2014 at 1:11 PM, Robert Nelson robertcnel...@gmail.com wrote:
 On Wed, Jul 30, 2014 at 12:51 PM, Tristan Phillips
 tris.phill...@gmail.com wrote:
 OK, here goes :)

 Downloaded BBB-eMMC-flasher-ubuntu-14.04-console-armhf-2014-07-06-2gb and
 flashed to SD card

 git clone https://github.com/RobertCNelson/bb-kernel.git
 cd bb-kernel/
 git checkout origin/am33x-v3.8 -b tmp
 ./build_kernel.sh

 Deselected TI ethernet drivers in the menuconfig.  Thats all.
 Waited for build to complete.
 tools/install_kernel.sh

 So, at this point, you've removed the initrd.img from the flasher
 microSD card...

 Waited for copy
 Ejected and inserted into BBB
 Attempted boot
 Cried
 Posted asking for help

 The flasher relies on a lot of things to be setup properly.  By
 removing one, it falls apart like a house of cards..

If all you are doing is testing kernel options.. Ignore the eMMC
(infact clear it out: sudo dd if=/dev/zero of=/dev/mmcblk1)

Then just use the microSD image and update the kernel like above..

Once you get your microSD working just right, we can talk again about
the flasher...

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Board won't flash

2014-07-30 Thread Tristan Phillips
Brilliant, I was just about to ask that.  So I have my kernel build honed 
now, and can get our board without ethernet booting by removing the TI 
drivers,  there are other kernel options I will play with later.

So, to sort out a flasher, or use a non flasher as a flasher, even 
manually?  (I have had no luck simply touching the trigger file...)

Much appreciated :)

On Wednesday, 30 July 2014 19:13:30 UTC+1, RobertCNelson wrote:

 On Wed, Jul 30, 2014 at 1:11 PM, Robert Nelson robert...@gmail.com 
 javascript: wrote: 
  On Wed, Jul 30, 2014 at 12:51 PM, Tristan Phillips 
  tris.p...@gmail.com javascript: wrote: 
  OK, here goes :) 
  
  Downloaded BBB-eMMC-flasher-ubuntu-14.04-console-armhf-2014-07-06-2gb 
 and 
  flashed to SD card 
  
  git clone https://github.com/RobertCNelson/bb-kernel.git 
  cd bb-kernel/ 
  git checkout origin/am33x-v3.8 -b tmp 
  ./build_kernel.sh 
  
  Deselected TI ethernet drivers in the menuconfig.  Thats all. 
  Waited for build to complete. 
  tools/install_kernel.sh 
  
  So, at this point, you've removed the initrd.img from the flasher 
  microSD card... 
  
  Waited for copy 
  Ejected and inserted into BBB 
  Attempted boot 
  Cried 
  Posted asking for help 
  
  The flasher relies on a lot of things to be setup properly.  By 
  removing one, it falls apart like a house of cards.. 

 If all you are doing is testing kernel options.. Ignore the eMMC 
 (infact clear it out: sudo dd if=/dev/zero of=/dev/mmcblk1) 

 Then just use the microSD image and update the kernel like above.. 

 Once you get your microSD working just right, we can talk again about 
 the flasher... 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Maximum current on GPIO?

2014-07-30 Thread Brandon I
The gpio are push pull/pseudo open drain, so there's a transistor/switch
going from 3.3V to the pin, and a transistor going from ground to the pin.
When you set the pin high, you're turning on only the transistor to 3.3V,
so it's sourcing the current from 3.3V, through the transistor, out of the
pin. When you set it low, you're turning on the transistor to ground, so
it's sinking the current into the pin, through the transistor, and to
ground. If you have both off (high impedance), there isn't any significant
current going anywhere (I think it's some nA).





On Wed, Jul 30, 2014 at 6:11 AM, k...@cranehome.info wrote:

 A GPIO configured as an input will not draw substantial current from the
 line it's connected to.  It is sensitive to the charge level on the line
 and will not draw current from it (exempting the gate capacitor charge-up).
  A GPIO that is set to OUTPUT a high signal is now a potential source of
 current.   If you hook that up to the + end of a motor it will try to power
 the motor with the output.  In that case you MUST insure that your circuit
 limits the current to a maximum of 6mA.  The same is true if you OUTPUT a
 low signal.  Hook that to the - lead on a motor and the + lead to supply
 and the CPU is now trying to absorb all the current from that motor and
 will go poof.

 So if you were to connect directly to the positive supply and say somehow
 that pin ever becomes an output that is low you now have a dead short
 through the I/O pin and at best you'll fry that pin or its whole bank,
 you'll likely kill the whole chip.  Since the I/O on these devices is
 programmatic I never like to connect a pin directly to the supply rails.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to a topic in the
 Google Groups BeagleBoard group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/beagleboard/cWGCEtg9syY/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Can the BeagleBone Black be used for industrial designs?

2014-07-30 Thread darek . fanton
As has been mentioned, while it was developed as a community supported 
platform, the BeagleBone can be used for any application you choose. For a 
time, there was a lack of sufficient supply to meet the demands of larger 
scale projects, but that is generally no longer the case. The topic of 
utilizing BBB for industrial applications is explored further here 
- 
http://www.logicsupply.com/blog/2014/05/15/new-embest-board-opens-door-for-beaglebone-black-projects/

As for industrial projects that do not require graphical interface, we're 
currently working with a number of clients developing embedded solutions 
based on the BBB. We've outlined the basic building blocks for many of the 
type of projects we're seeing being developed on our BeagleBone resource 
site Inspire 
- 
http://www.logicsupply.com/blog/2014/07/29/whats-new-inspire-latest-beaglebone-black-projects/

I hope your project has taken off in the last year.

On Friday, August 2, 2013 12:32:02 AM UTC-4, arunbarn...@gmail.com wrote:

 Hi,

 I am new to BBB, I have several questions regarding this.

 1. I currently develop industrial control systems using micro-controllers. 
 I would like to use the BBB for some of my control applications. I read in 
 the BBB home page that the BBB is a development platform, does this mean 
 this system can only be used for development and not professional or 
 industrial use ??

 2. Can the BBB be used for applications that do not require visual 
 interface like LCD or keyboards ? Like controlling a stepper motor, 
 accepting logic signals from external hardware ??

 3. A basic scheme I have in mind is, when BBB boots on power up, instead 
 of desktop or a command line begin loaded an application (code by me) will 
 be loaded, this application will then manage various tasks like monitoring 
 input ports, flashing some LEDs etc.

 Is the above scheme possible with the BBB ??

 Please be patient with me as I am new to embedded linux and to BBB..


 thanks
 a


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] BBB Rev C: Debian: PureJavaComm/JNA test fails

2014-07-30 Thread slowjourney
I'm trying to use PureJavaComm on my BBB/Rev C (Debian).  I get the 
following results:


root@beaglebone:/opt/dnc/lib# java -cp PureJavaComm.jar:jna-4.0.0.jar 
purejavacomm.testsuite.TestSuite
PureJavaComm Test Suite
Using port: cu.usbserial-FTOXM3NX
TestMissingPort   Exception in thread main 
java.lang.UnsatisfiedLinkError: 
/tmp/jna-3506402/jna7659204852244455440.tmp: 
/tmp/jna-3506402/jna7659204852244455440.tmp: cannot open shared object 
file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1965)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1890)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1851)
at java.lang.Runtime.load0(Runtime.java:795)
at java.lang.System.load(System.java:1062)
at 
com.sun.jna.Native.loadNativeDispatchLibraryFromClasspath(Native.java:761)
at com.sun.jna.Native.loadNativeDispatchLibrary(Native.java:736)
at com.sun.jna.Native.clinit(Native.java:131)
at com.sun.jna.NativeLong.clinit(NativeLong.java:23)
at jtermios.linux.JTermiosImpl.clinit(JTermiosImpl.java:63)
at jtermios.JTermios.clinit(JTermios.java:285)
at 
purejavacomm.CommPortIdentifier.getPortIdentifier(CommPortIdentifier.java:104)
at 
purejavacomm.testsuite.TestFreeFormPortIdentifiers.testMissingPortInCommPortIdentifier(TestFreeFormPortIdentifiers.java:25)
at purejavacomm.testsuite.TestSuite.main(TestSuite.java:43)
root@beaglebone:/opt/dnc/lib#

The test works on Windows 7.  Any suggestions???

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Beagleboard-XM

2014-07-30 Thread solorzano . tony
When will the beagleboard-XM be available again? Looks like all distis are 
out and no date for available.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Board won't flash

2014-07-30 Thread Robert Nelson
On Wed, Jul 30, 2014 at 1:38 PM, Tristan Phillips
tris.phill...@gmail.com wrote:
 Brilliant, I was just about to ask that.  So I have my kernel build honed
 now, and can get our board without ethernet booting by removing the TI
 drivers,  there are other kernel options I will play with later.

 So, to sort out a flasher, or use a non flasher as a flasher, even manually?
 (I have had no luck simply touching the trigger file...)

It's no longer triggered. Instead it's ran in single user mode on
startup: cmdline= init=xyz.

Thus it's much more reliable.

But much funner to debug.  You need a serial connection, and you need
to understand what it's expecting along with what it is doing.

https://github.com/RobertCNelson/boot-scripts/blob/master/tools/eMMC/init-eMMC-flasher-v2.sh

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: not flashing the eMMC (not blinking 4 user leds) problem

2014-07-30 Thread nerevarjacob
I'm having the same problem.  I'm putting the latest angstrom onto an ssd 
card following the instructions provided in the links below.  I formatted 
the SD card to fat32, labeled it BBB_ANSTROM, used dd to copy the image 
(after running unxz on it), put the sd card in, held the user button, apply 
power, no LEDs light up.

https://learn.adafruit.com/downloads/pdf/beaglebone-black-installing-operating-systems.pdf
https://learn.adafruit.com/beaglebone-black-installing-operating-systems/flashing-the-beaglebone-black

On Tuesday, April 15, 2014 2:22:48 AM UTC-4, chirag panchal wrote:

 Hello, 
   I download the Android image file for BBB from link: 
 http://icculus.org/~hendersa/BBB_JB_Android_3_8_13.img.bz2
   then by using *win32disk imager*, I write that image file into 
 my microSDcard.
   then I put microSD card into microSDcard slot of Beagle Bone 
 Black. and *press the boot button*, then* still holding that boot button, 
 I apply power supply*. 
   But *No user LEDs are blinking*. so many times I have done this 
 procedure for a long time. But nothing happend with LED.
  
 *Anybody can please help me*
 *Thanks in advance.*


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Beagleboard-xm avaliability

2014-07-30 Thread Gerald Coley
They only sale though distributors so it is up to
the distributor to handle this.The idea of setting up a production line,
loading the parts to build one board would make the cost of this board
around $500. Orders would need to be entered by the distributors. I am not
sure any of them would be willing to order 1500 boards just so they can
sell you one board. It is basic supply and demand. If we have real demand
then we will supply.

 If you want one board ask around the community and see if anyone has one
to sale.


Gerald



On Wed, Jul 30, 2014 at 11:47 AM, solorzano.t...@gmail.com wrote:

 Hello,
 I placed a order with Digikey on July 2, 2014. I have yet to received a
 due date or dock date, Digi has been trying to get a date, i have tried to
 email Rod at CircuitCo.
 Its been almost 4 weeks with nothing... no type of answers. Where can i
 get help with this issue?


 On Wednesday, June 18, 2014 7:07:04 AM UTC-7, Gerald wrote:

 If the distributors orders boards from us, we will build them. It has
 not been discontinued. But, unless they order boards, we cannot ship them
 boards.

 Gerald



 On Thu, Jun 5, 2014 at 4:04 PM, Francisco de Souza Júnior 
 fsju...@gmail.com wrote:

 Hi,

 I'm looking for a Beagleboard-xm to buy in all distributors sugested by
 beagleboard.org (digikey, mouser, farnell etc) but there is no board
 avaliable to buy!

 The Beagleboard-xm has been discontinuated?


 Regards,

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.

 For more options, visit https://groups.google.com/d/optout.


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Board won't flash

2014-07-30 Thread Robert Nelson
On Wed, Jul 30, 2014 at 1:55 PM, Tristan Phillips
tris.phill...@gmail.com wrote:
 OK, cool.  I'm using a serial connection.  So to clarify we are talking
 about how to make a non flasher image flash to the internal NAND.  Great :)

Not sure what we are talking about...

 So just xyz, literally?

fingers are lazy...

https://github.com/RobertCNelson/omap-image-builder/blob/master/tools/setup_sdcard.sh#L741


 Awesome :)  I'll try that and let you know how I get on in the morning.
 It's beer time here across the pond :)

Regards,


-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Board won't flash

2014-07-30 Thread Tristan Phillips
OK, thanks.  At least I have a plan and some things to try in the morning :)

On Wednesday, 30 July 2014 19:58:00 UTC+1, RobertCNelson wrote:

 On Wed, Jul 30, 2014 at 1:55 PM, Tristan Phillips 
 tris.p...@gmail.com javascript: wrote: 
  OK, cool.  I'm using a serial connection.  So to clarify we are talking 
  about how to make a non flasher image flash to the internal NAND.  Great 
 :) 

 Not sure what we are talking about... 

  So just xyz, literally? 

 fingers are lazy... 


 https://github.com/RobertCNelson/omap-image-builder/blob/master/tools/setup_sdcard.sh#L741
  

  
  Awesome :)  I'll try that and let you know how I get on in the morning. 
  It's beer time here across the pond :) 

 Regards, 


 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BBB Rev C: Debian: PureJavaComm/JNA test fails

2014-07-30 Thread William Hermans

 *TestMissingPort   *
 *Exception in thread main java.lang.**UnsatisfiedLinkError:
 /tmp/jna-3506402/**jna7659204852244455440.tmp: 
 /tmp/jna-3506402/**jna7659204852244455440.tmp:
 cannot open shared object file: No such file or directory*


Google + exception in thread main java.lang.UnsatisfiedLinkError: returns
many links . . .

First hit -
http://stackoverflow.com/questions/11825528/exception-in-thread-main-java-lang-unsatisfiedlinkerror
.

I don't write code in Java, as such I know nothing about PureJavaComm, or
this missing shared object file. But I'm sure you can use google and find a
solution yourself.

On Wed, Jul 30, 2014 at 9:53 AM, slowjour...@sbcglobal.net wrote:

 I'm trying to use PureJavaComm on my BBB/Rev C (Debian).  I get the
 following results:


 root@beaglebone:/opt/dnc/lib# java -cp PureJavaComm.jar:jna-4.0.0.jar
 purejavacomm.testsuite.TestSuite
 PureJavaComm Test Suite
 Using port: cu.usbserial-FTOXM3NX
 TestMissingPort   Exception in thread main
 java.lang.UnsatisfiedLinkError:
 /tmp/jna-3506402/jna7659204852244455440.tmp:
 /tmp/jna-3506402/jna7659204852244455440.tmp: cannot open shared object
 file: No such file or directory
 at java.lang.ClassLoader$NativeLibrary.load(Native Method)
 at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1965)
 at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1890)
 at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1851)
 at java.lang.Runtime.load0(Runtime.java:795)
 at java.lang.System.load(System.java:1062)
 at
 com.sun.jna.Native.loadNativeDispatchLibraryFromClasspath(Native.java:761)
 at com.sun.jna.Native.loadNativeDispatchLibrary(Native.java:736)
 at com.sun.jna.Native.clinit(Native.java:131)
 at com.sun.jna.NativeLong.clinit(NativeLong.java:23)
 at jtermios.linux.JTermiosImpl.clinit(JTermiosImpl.java:63)
 at jtermios.JTermios.clinit(JTermios.java:285)
 at
 purejavacomm.CommPortIdentifier.getPortIdentifier(CommPortIdentifier.java:104)
 at
 purejavacomm.testsuite.TestFreeFormPortIdentifiers.testMissingPortInCommPortIdentifier(TestFreeFormPortIdentifiers.java:25)
 at purejavacomm.testsuite.TestSuite.main(TestSuite.java:43)
 root@beaglebone:/opt/dnc/lib#

 The test works on Windows 7.  Any suggestions???

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: not flashing the eMMC (not blinking 4 user leds) problem

2014-07-30 Thread Jacob Travis
Ok, so my problem was I didn't specify the bs=1m on my copy command.  There
is a typo in the first link, it should be bs=1M.  Stupid problem but it's
working now.


On Wed, Jul 30, 2014 at 1:21 PM, nerevarja...@gmail.com wrote:

 I'm having the same problem.  I'm putting the latest angstrom onto an ssd
 card following the instructions provided in the links below.  I formatted
 the SD card to fat32, labeled it BBB_ANSTROM, used dd to copy the image
 (after running unxz on it), put the sd card in, held the user button, apply
 power, no LEDs light up.


 https://learn.adafruit.com/downloads/pdf/beaglebone-black-installing-operating-systems.pdf

 https://learn.adafruit.com/beaglebone-black-installing-operating-systems/flashing-the-beaglebone-black

 On Tuesday, April 15, 2014 2:22:48 AM UTC-4, chirag panchal wrote:

 Hello,
   I download the Android image file for BBB from link:
 http://icculus.org/~hendersa/BBB_JB_Android_3_8_13.img.bz2
   then by using *win32disk imager*, I write that image file into
 my microSDcard.
   then I put microSD card into microSDcard slot of Beagle Bone
 Black. and *press the boot button*, then* still holding that boot
 button, I apply power supply*.
   But *No user LEDs are blinking*. so many times I have done
 this procedure for a long time. But nothing happend with LED.

 *Anybody can please help me*
 *Thanks in advance.*

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to a topic in the
 Google Groups BeagleBoard group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/beagleboard/grP5w0CgtLc/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.




-- 
Jacob Travis
nerevarja...@gmail.com
Electrical Engineering student
University of Kentucky

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] RevC Web Browser when booting from SDcard 5/14/14 image

2014-07-30 Thread tdlivings
I downloaded the latest boot from SD card image(5-14-14 ) image and it 
boots fine.
I can Putty and WinSCP to it also.
The issue I am having is when I run the included web browser it will either 
open and
crash right away or will open an allow a couple of clicks and then it is 
gone.
I am not sure if it is crashing or hiding but if you keep trying to re-run 
it after a couple of
times it does not even open.
Also when I logged out after doing this it shutdown fine but when I tried 
to reboot the image
on the SD card was corrupt indicating missing modules

I re-imaged the SD card and it again boots fine and has same Web Browser 
issue

The Web Browser is Chromium on this image.

When I boot the flash emmc image that is on the board I do not see this 
issue with the Chromium
Web Browser I was able to get Cloud9 running.

I am booting with a mouse, keyboard and external monitor and networked to 
my home router.

Does anyone else see this issue

Thank's
Tom

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread neosin
I think I would of paid 10 - 12 extra bux for a BBB that had some 
protection. Feels like at any moment my BBB might suddenly spontaneously 
contract magic smoke disease and all it's electrons fall out. 

On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:


 hello people, please excuse my for my Tarzan English. 
 first connect my BBB with a 5V supply 4A with the negative in the middle, 
 might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread Gerald Coley
But, our goal was as low a price as we can get. Adding a protection against
all the things that could happen means it would have to be water poof and
withstand 220 VAC on the input. That is more than $10 to $12.

Reading the manual and the wiki is free.

Gerald





On Wed, Jul 30, 2014 at 2:50 PM, neo...@gmail.com wrote:

 I think I would of paid 10 - 12 extra bux for a BBB that had some
 protection. Feels like at any moment my BBB might suddenly spontaneously
 contract magic smoke disease and all it's electrons fall out.

 On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:


 hello people, please excuse my for my Tarzan English.
 first connect my BBB with a 5V supply 4A with the negative in the middle,
 might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread John Syn

From:  neo...@gmail.com
Reply-To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Date:  Wednesday, July 30, 2014 at 12:50 PM
To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Cc:  candyfli...@gmail.com
Subject:  [beagleboard] Re: RIP Never Used BBB

 I think I would of paid 10 - 12 extra bux for a BBB that had some protection.
 Feels like at any moment my BBB might suddenly spontaneously contract magic
 smoke disease and all it's electrons fall out.
Since there are very few of you who have done this, why should the rest of
us have to pay the extra cost. I think there are less than 20 out of 150,000
boards shipped.

Regards,
John
 
 
 On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:
 
 hello people, please excuse my for my Tarzan English.
 first connect my BBB with a 5V supply 4A with the negative in the middle,
 might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] analogy Gyro breakout help?

2014-07-30 Thread Brian Heckathorne
I'm having a heck of a time figuring out the Gyro-py breakout. 

https://www.sparkfun.com/products/11341

I have it hooked up in to p9_40, and I can't figure out how to get it to 
read correctly. I've searched and searched for info related to conversion 
or whatever is needed to read an analog gyro correctly. If anyone has some 
info on how to do this in bonescript please fill me in!

Thanks!


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] SHT20 I2C temperature sensor isn't detected

2014-07-30 Thread Hieu Duong
Maybe you need pull up resistors? The revision B of the Weather Cape also
uses a Sensirion humidity sensor SHT21:
http://elinux.org/CircuitCo:BeagleBone_Weather

-Hieu


On Tue, Jul 29, 2014 at 9:12 PM, Tatsuya Sasaki tasas...@gmail.com wrote:

 Hi all.
 I hooked up my sensirion SHT20 temp/humid sensor to my BBB.

 http://www.sensirion.com/en/products/humidity-temperature/humidity-sensor-sht20/

 -SHT20-  -BBB-
 GND --- P9-01
 VDD --- P9-03
 SCL --- P9-19
 SDA --- P9-20

 The datasheet says the address is 0100 (0x40).

 5.3 Sending a Command
 After sending the Start condition, the subsequent I2C
 header consists of the 7-bit I2C device address ‘1000’000’
 and an SDA direction bit (Read R: ‘1’, Write W: ‘0’).
 The wiring is like the following.


 I expected to appear the sensor on I2C-1's address 0x40.
 But it isn't detected:

 $ sudo i2cdetect -r -y 1

  0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f

 00:  -- -- -- -- -- -- -- -- -- -- -- -- --

 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 50: -- -- -- -- UU UU UU UU -- -- -- -- -- -- -- --

 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 70: -- -- -- -- -- -- -- --

 and also

 $ sudo i2cdetect -r -y 0

  0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f

 00:  -- -- -- -- -- -- -- -- -- -- -- -- --

 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 20: -- -- -- -- UU -- -- -- -- -- -- -- -- -- -- --

 30: -- -- -- -- UU -- -- -- -- -- -- -- -- -- -- --

 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 50: UU -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

 70: UU -- -- -- -- -- -- --

 I checked the sensor worked as a normal I2C device on my Arduino.

 Do I need to install some drivers on BBB for the sensor?
 Or do I missed some procedures?

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BBB Rev C: Debian: PureJavaComm/JNA test fails

2014-07-30 Thread slowjourney
Thanks suggesting Google!!  I would never have thought of that!!

Seriously though, I've been trying to solve this problem for 7 days now.  
And I've Googled everything I can think of.  Your first hit doesn't tell 
me anything I don't already know.  

I believe this to be some sort of permissions or path problem with my 
Debian setup. That's the reason the request for support is under 
Newbie/Debian.  I've tried all of the path stuff that Java expects.  I may 
have something wrong on the Java side, but I don't think that is the case.  
I was hoping that someone that has been successful with PureJavaComm on BBB 
would be able to point me in the right direction.  So, I'll wait and see 
what happens.

On Wednesday, July 30, 2014 3:02:15 PM UTC-4, William Hermans wrote:

 *TestMissingPort   *
 *Exception in thread main 
 java.lang.**UnsatisfiedLinkError: 
 /tmp/jna-3506402/**jna7659204852244455440.tmp: 
 /tmp/jna-3506402/**jna7659204852244455440.tmp: 
 cannot open shared object file: No such file or directory*


 Google + exception in thread main java.lang.UnsatisfiedLinkError: 
 returns many links . . .

 First hit - 
 http://stackoverflow.com/questions/11825528/exception-in-thread-main-java-lang-unsatisfiedlinkerror
 .

 I don't write code in Java, as such I know nothing about PureJavaComm, or 
 this missing shared object file. But I'm sure you can use google and find a 
 solution yourself.

 On Wed, Jul 30, 2014 at 9:53 AM, slowj...@sbcglobal.net javascript: 
 wrote:

 I'm trying to use PureJavaComm on my BBB/Rev C (Debian).  I get the 
 following results:


 root@beaglebone:/opt/dnc/lib# java -cp PureJavaComm.jar:jna-4.0.0.jar 
 purejavacomm.testsuite.TestSuite
 PureJavaComm Test Suite
 Using port: cu.usbserial-FTOXM3NX
 TestMissingPort   Exception in thread main 
 java.lang.UnsatisfiedLinkError: 
 /tmp/jna-3506402/jna7659204852244455440.tmp: 
 /tmp/jna-3506402/jna7659204852244455440.tmp: cannot open shared object 
 file: No such file or directory
 at java.lang.ClassLoader$NativeLibrary.load(Native Method)
 at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1965)
 at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1890)
 at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1851)
 at java.lang.Runtime.load0(Runtime.java:795)
 at java.lang.System.load(System.java:1062)
 at 
 com.sun.jna.Native.loadNativeDispatchLibraryFromClasspath(Native.java:761)
 at com.sun.jna.Native.loadNativeDispatchLibrary(Native.java:736)
 at com.sun.jna.Native.clinit(Native.java:131)
 at com.sun.jna.NativeLong.clinit(NativeLong.java:23)
 at jtermios.linux.JTermiosImpl.clinit(JTermiosImpl.java:63)
 at jtermios.JTermios.clinit(JTermios.java:285)
 at 
 purejavacomm.CommPortIdentifier.getPortIdentifier(CommPortIdentifier.java:104)
 at 
 purejavacomm.testsuite.TestFreeFormPortIdentifiers.testMissingPortInCommPortIdentifier(TestFreeFormPortIdentifiers.java:25)
 at purejavacomm.testsuite.TestSuite.main(TestSuite.java:43)
 root@beaglebone:/opt/dnc/lib#

 The test works on Windows 7.  Any suggestions???

 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread neosin
I wasn't saying make it bullet proof, just some simple goof proofs. Like on 
the 5v plug, that kind of thing. I get the whole cost thing and by and 
large agree. 

I'm sure to try and cover everything would cost a bit, Not sure why anyone 
would be putting 220v to the 5v plug, but i could understand reverse 
polarity on the 5v plug. Not sure it needs to be gone to the extreme. 

How hard/costly is it to fix something like reverse polarity or blown gpio? 
if repairs are easy enough, perhaps protection isn't worth it. 

On Wednesday, July 30, 2014 3:00:10 PM UTC-5, john3909 wrote:


 From: neo...@gmail.com javascript:
 Reply-To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript:
 Date: Wednesday, July 30, 2014 at 12:50 PM
 To: beagl...@googlegroups.com javascript: beagl...@googlegroups.com 
 javascript:
 Cc: candy...@gmail.com javascript:
 Subject: [beagleboard] Re: RIP Never Used BBB

 I think I would of paid 10 - 12 extra bux for a BBB that had some 
 protection. Feels like at any moment my BBB might suddenly spontaneously 
 contract magic smoke disease and all it's electrons fall out. 

 Since there are very few of you who have done this, why should the rest of 
 us have to pay the extra cost. I think there are less than 20 out of 
 150,000 boards shipped.

 Regards,
 John



 On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:


 hello people, please excuse my for my Tarzan English. 
 first connect my BBB with a 5V supply 4A with the negative in the middle, 
 might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.

 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BBB Rev C: Debian: PureJavaComm/JNA test fails

2014-07-30 Thread Datenheld
You might want to try libbulldog (http://www.libbulldog.org).

Here's an example:
http://libbulldog.org/bulldog/examples/serial-example/

It can do advanced Serial communication as well, but has not been tested 
on Debian. By advanced I mean settings things like setting parity, 
databits and stop bits. Maybe that is sufficient for you. 

But you'll probably have to tweak the Java side a little, I don't know if 
the Debian devices match the angstrom serial devices.

What I can say about the error, though, is, that you will also get it, when 
the binary format does not match your system.

Am Mittwoch, 30. Juli 2014 22:50:40 UTC+2 schrieb slowj...@sbcglobal.net:

 Thanks suggesting Google!!  I would never have thought of that!!

 Seriously though, I've been trying to solve this problem for 7 days now.  
 And I've Googled everything I can think of.  Your first hit doesn't tell 
 me anything I don't already know.  

 I believe this to be some sort of permissions or path problem with my 
 Debian setup. That's the reason the request for support is under 
 Newbie/Debian.  I've tried all of the path stuff that Java expects.  I may 
 have something wrong on the Java side, but I don't think that is the case.  
 I was hoping that someone that has been successful with PureJavaComm on BBB 
 would be able to point me in the right direction.  So, I'll wait and see 
 what happens.

 On Wednesday, July 30, 2014 3:02:15 PM UTC-4, William Hermans wrote:

 *TestMissingPort   *
 *Exception in thread main 
 java.lang.**UnsatisfiedLinkError: 
 /tmp/jna-3506402/**jna7659204852244455440.tmp: 
 /tmp/jna-3506402/**jna7659204852244455440.tmp: 
 cannot open shared object file: No such file or directory*


 Google + exception in thread main java.lang.UnsatisfiedLinkError: 
 returns many links . . .

 First hit - 
 http://stackoverflow.com/questions/11825528/exception-in-thread-main-java-lang-unsatisfiedlinkerror
 .

 I don't write code in Java, as such I know nothing about PureJavaComm, or 
 this missing shared object file. But I'm sure you can use google and find a 
 solution yourself.

 On Wed, Jul 30, 2014 at 9:53 AM, slowj...@sbcglobal.net wrote:

 I'm trying to use PureJavaComm on my BBB/Rev C (Debian).  I get the 
 following results:


 root@beaglebone:/opt/dnc/lib# java -cp PureJavaComm.jar:jna-4.0.0.jar 
 purejavacomm.testsuite.TestSuite
 PureJavaComm Test Suite
 Using port: cu.usbserial-FTOXM3NX
 TestMissingPort   Exception in thread main 
 java.lang.UnsatisfiedLinkError: 
 /tmp/jna-3506402/jna7659204852244455440.tmp: 
 /tmp/jna-3506402/jna7659204852244455440.tmp: cannot open shared object 
 file: No such file or directory
 at java.lang.ClassLoader$NativeLibrary.load(Native Method)
 at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1965)
 at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1890)
 at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1851)
 at java.lang.Runtime.load0(Runtime.java:795)
 at java.lang.System.load(System.java:1062)
 at 
 com.sun.jna.Native.loadNativeDispatchLibraryFromClasspath(Native.java:761)
 at com.sun.jna.Native.loadNativeDispatchLibrary(Native.java:736)
 at com.sun.jna.Native.clinit(Native.java:131)
 at com.sun.jna.NativeLong.clinit(NativeLong.java:23)
 at jtermios.linux.JTermiosImpl.clinit(JTermiosImpl.java:63)
 at jtermios.JTermios.clinit(JTermios.java:285)
 at 
 purejavacomm.CommPortIdentifier.getPortIdentifier(CommPortIdentifier.java:104)
 at 
 purejavacomm.testsuite.TestFreeFormPortIdentifiers.testMissingPortInCommPortIdentifier(TestFreeFormPortIdentifiers.java:25)
 at purejavacomm.testsuite.TestSuite.main(TestSuite.java:43)
 root@beaglebone:/opt/dnc/lib#

 The test works on Windows 7.  Any suggestions???

 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google 
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BBB Rev C: Debian: PureJavaComm/JNA test fails

2014-07-30 Thread Datenheld
P.S.

You might also want to consider using the LinuxSerialPort class of 
libbulldog directly! Then you shouldn't have troubles due to Debian.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] cryptsetup / LUKS disk encryption on Debian not working

2014-07-30 Thread niko . heeren
Is anyone running a encrypted usb drive on debian on the bbb? Because I 
think this might be a bug... Mine keeps crashing and I have basically 
nothing else installed / configured.
Any help would be greatly appreciated!




On Sunday, July 27, 2014 1:04:43 PM UTC+2, niko@gmail.com wrote:

 S...

 I made a SD card with the latest debian RCN demo-image (2014-07-06). This 
 time cryptsetup works a little better but it is far from operational.
 What I did:
   sudo cryptsetup --verbose --verify-passphrase luksFormat /dev/sdb1
   sudo cryptsetup luksOpen /dev/sdb1 sdb1 
   sudo mkfs.ext4 /dev/mapper/sdb1

 At this point the BBB crashes. The first time I got a kernel panic warning 
 on ssh:
   kernel:[79920.677253] Kernel panic - not syncing: hung_task: blocked 
 tasks

 So I formatted the usb drive to ext4 on my PC, hooked it back to the BBB 
 and opened it there. This worked. However writing to the disk will again 
 crash my poor BBB.

 Anyone any ideas how I could make BBB debian work with LUKS on an external 
 disk?

 Cheers
 N

 On Tuesday, July 22, 2014 10:14:24 PM UTC+2, RobertCNelson wrote:

 On Tue, Jul 22, 2014 at 3:06 PM,  niko@gmail.com wrote: 
  No such file or directory... 
  
  I am running a Debian Wheezy I downloaded from the BBB Wiki a while 
 ago. Can 
  this also be updated (using your tools)? 
  Would there be a simple way to migrate? 

 Sadly nope. As it's not my image, so the automated install-me.sh/etc 
 is not guaranteed to work/boot. 

 But you can always build that kernel branch and install the kernel 
 image/dtbs/modules where they need to be. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] cryptsetup / LUKS disk encryption on Debian not working

2014-07-30 Thread Don deJuan
On 07/30/2014 02:38 PM, niko.hee...@gmail.com wrote:
 Is anyone running a encrypted usb drive on debian on the bbb? Because
 I think this might be a bug... Mine keeps crashing and I have
 basically nothing else installed / configured.
 Any help would be greatly appreciated!




 On Sunday, July 27, 2014 1:04:43 PM UTC+2, niko@gmail.com wrote:

 S...

 I made a SD card with the latest debian RCN demo-image
 (2014-07-06). This time cryptsetup works a little better but it is
 far from operational.
 What I did:
   sudo cryptsetup --verbose --verify-passphrase luksFormat /dev/sdb1
   sudo cryptsetup luksOpen /dev/sdb1 sdb1
   sudo mkfs.ext4 /dev/mapper/sdb1

 At this point the BBB crashes. The first time I got a kernel panic
 warning on ssh:
   kernel:[79920.677253] Kernel panic - not syncing: hung_task:
 blocked tasks

 So I formatted the usb drive to ext4 on my PC, hooked it back to
 the BBB and opened it there. This worked. However writing to the
 disk will again crash my poor BBB.

 Anyone any ideas how I could make BBB debian work with LUKS on an
 external disk?

 Cheers
 N

 On Tuesday, July 22, 2014 10:14:24 PM UTC+2, RobertCNelson wrote:

 On Tue, Jul 22, 2014 at 3:06 PM,  niko@gmail.com wrote:
  No such file or directory...
 
  I am running a Debian Wheezy I downloaded from the BBB Wiki
 a while ago. Can
  this also be updated (using your tools)?
  Would there be a simple way to migrate?

 Sadly nope. As it's not my image, so the automated
 install-me.sh/etc http://install-me.sh/etc
 is not guaranteed to work/boot.

 But you can always build that kernel branch and install the
 kernel
 image/dtbs/modules where they need to be.

 Regards,

 -- 
 Robert Nelson
 http://www.rcn-ee.com/

 -- 
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard+unsubscr...@googlegroups.com
 mailto:beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.
Oh forgot to mention the only thing different I did was apply the nuke
patchset. Been going about 4 months on that install.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread John Syn

From:  neo...@gmail.com
Reply-To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Date:  Wednesday, July 30, 2014 at 1:11 PM
To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Subject:  Re: [beagleboard] Re: RIP Never Used BBB

 I wasn't saying make it bullet proof, just some simple goof proofs. Like on
 the 5v plug, that kind of thing. I get the whole cost thing and by and large
 agree. 
 
 I'm sure to try and cover everything would cost a bit, Not sure why anyone
 would be putting 220v to the 5v plug, but i could understand reverse polarity
 on the 5v plug. Not sure it needs to be gone to the extreme.
 
 How hard/costly is it to fix something like reverse polarity or blown gpio? if
 repairs are easy enough, perhaps protection isn't worth it.
Think economics and not technical. Since there were very few returns because
of reverse polarity, it isn¹t cost effective to add the protection to each
board. For example, circuitco has shipped 177,000 BBB multiplied by $10
protection is $1,770,000. Less than 20 returned because of reverse polarity
at $55 each is $1,100. The solution is obvious. Gerald is very smart and he
knows what he is doing ;-) Users just need to be more careful.

Regards, 
John
 
 
 On Wednesday, July 30, 2014 3:00:10 PM UTC-5, john3909 wrote:
 
 From:  neo...@gmail.com javascript: 
 Reply-To:  beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript: 
 Date:  Wednesday, July 30, 2014 at 12:50 PM
 To:  beagl...@googlegroups.com javascript:  beagl...@googlegroups.com
 javascript: 
 Cc:  candy...@gmail.com javascript: 
 Subject:  [beagleboard] Re: RIP Never Used BBB
 
 I think I would of paid 10 - 12 extra bux for a BBB that had some
 protection. Feels like at any moment my BBB might suddenly spontaneously
 contract magic smoke disease and all it's electrons fall out.
 Since there are very few of you who have done this, why should the rest of us
 have to pay the extra cost. I think there are less than 20 out of 150,000
 boards shipped.
 
 Regards,
 John
 
 
 On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:
 
 hello people, please excuse my for my Tarzan English.
 first connect my BBB with a 5V supply 4A with the negative in the middle,
 might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard...@googlegroups.com javascript: .
 For more options, visit https://groups.google.com/d/optout.
 
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] cryptsetup / LUKS disk encryption on Debian not working

2014-07-30 Thread John Syn
You won¹t receive a copy of your posts so there is no need to post multiple
times. 

Regards,
John
From:  Don deJuan donjuans...@gmail.com
Reply-To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Date:  Wednesday, July 30, 2014 at 2:46 PM
To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Subject:  Re: [beagleboard] cryptsetup / LUKS disk encryption on Debian not
working

 
  
 On 07/30/2014 02:38 PM, niko.hee...@gmail.com wrote:
  
  
   
 Is anyone running a encrypted usb drive on debian on the bbb? Because I think
 this might be a bug... Mine keeps crashing and I have basically nothing else
 installed / configured.
  Any help would be greatly appreciated!
  
  
  
  
  On Sunday, July 27, 2014 1:04:43 PM UTC+2, niko@gmail.com wrote:
  
 S...
  
  I made a SD card with the latest debian RCN demo-image (2014-07-06). This
 time cryptsetup works a little better but it is far from operational.
  What I did:
sudo cryptsetup --verbose --verify-passphrase luksFormat /dev/sdb1
sudo cryptsetup luksOpen /dev/sdb1 sdb1
sudo mkfs.ext4 /dev/mapper/sdb1
  
  At this point the BBB crashes. The first time I got a kernel panic warning
 on ssh:
kernel:[79920.677253] Kernel panic - not syncing: hung_task: blocked
 tasks
  
  So I formatted the usb drive to ext4 on my PC, hooked it back to the BBB
 and opened it there. This worked. However writing to the disk will again
 crash my poor BBB.
  
  Anyone any ideas how I could make BBB debian work with LUKS on an external
 disk?
  
  Cheers
  N
  
  On Tuesday, July 22, 2014 10:14:24 PM UTC+2, RobertCNelson wrote:
 On Tue, Jul 22, 2014 at 3:06 PM,  niko@gmail.com wrote:
   No such file or directory...
   
   I am running a Debian Wheezy I downloaded from the BBB Wiki a while
 ago. Can 
   this also be updated (using your tools)?
   Would there be a simple way to migrate?
  
  Sadly nope. As it's not my image, so the automated install-me.sh/etc
 http://install-me.sh/etc
  is not guaranteed to work/boot.
  
  But you can always build that kernel branch and install the kernel
  image/dtbs/modules where they need to be.
  
  Regards, 
  
  -- 
  Robert Nelson
  http://www.rcn-ee.com/
  
  
  
  
  -- 
  For more options, visit http://beagleboard.org/discuss
  --- 
  You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
  To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
  For more options, visit https://groups.google.com/d/optout.
  
  Oh forgot to mention the only thing different I did was apply the nuke
 patchset. Been going about 4 months on that install.
  
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread Brian Heckathorne
John no worries my friend I hope you didnt take offense im a Texan to boot
and was only thinking outloud. Wasnt implying anyone made a mistake or how
smart they are or are not. Ive been quite surprised how on top of
everything Gerald is. No doubts John hope you didnt take offense or think I
was downing the product any. Was NOT the case. I think its a great product
and cant wait to see whats next.

Personally I wish the support for bonescript was larger but that will take
time.
On Jul 30, 2014 5:27 PM, John Syn john3...@gmail.com wrote:


 From: neo...@gmail.com
 Reply-To: beagleboard@googlegroups.com beagleboard@googlegroups.com
 Date: Wednesday, July 30, 2014 at 1:11 PM
 To: beagleboard@googlegroups.com beagleboard@googlegroups.com
 Subject: Re: [beagleboard] Re: RIP Never Used BBB

 I wasn't saying make it bullet proof, just some simple goof proofs. Like
 on the 5v plug, that kind of thing. I get the whole cost thing and by and
 large agree.

 I'm sure to try and cover everything would cost a bit, Not sure why anyone
 would be putting 220v to the 5v plug, but i could understand reverse
 polarity on the 5v plug. Not sure it needs to be gone to the extreme.

 How hard/costly is it to fix something like reverse polarity or blown
 gpio? if repairs are easy enough, perhaps protection isn't worth it.

 Think economics and not technical. Since there were very few returns
 because of reverse polarity, it isn’t cost effective to add the protection
 to each board. For example, circuitco has shipped 177,000 BBB multiplied by
 $10 protection is $1,770,000. Less than 20 returned because of reverse
 polarity at $55 each is $1,100. The solution is obvious. Gerald is very
 smart and he knows what he is doing ;-) Users just need to be more careful.

 Regards,
 John



 On Wednesday, July 30, 2014 3:00:10 PM UTC-5, john3909 wrote:


 From: neo...@gmail.com
 Reply-To: beagl...@googlegroups.com beagl...@googlegroups.com
 Date: Wednesday, July 30, 2014 at 12:50 PM
 To: beagl...@googlegroups.com beagl...@googlegroups.com
 Cc: candy...@gmail.com
 Subject: [beagleboard] Re: RIP Never Used BBB

 I think I would of paid 10 - 12 extra bux for a BBB that had some
 protection. Feels like at any moment my BBB might suddenly spontaneously
 contract magic smoke disease and all it's electrons fall out.

 Since there are very few of you who have done this, why should the rest
 of us have to pay the extra cost. I think there are less than 20 out of
 150,000 boards shipped.

 Regards,
 John



 On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:


 hello people, please excuse my for my Tarzan English.
 first connect my BBB with a 5V supply 4A with the negative in the
 middle, might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to a topic in the
 Google Groups BeagleBoard group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/beagleboard/iiqYyjTuGHM/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] cryptsetup / LUKS disk encryption on Debian not working

2014-07-30 Thread Don deJuan
On 07/30/2014 03:30 PM, John Syn wrote:
 You won't receive a copy of your posts so there is no need to post
 multiple times. 

 Regards,
 John
 From: Don deJuan donjuans...@gmail.com mailto:donjuans...@gmail.com
 Reply-To: beagleboard@googlegroups.com
 mailto:beagleboard@googlegroups.com beagleboard@googlegroups.com
 mailto:beagleboard@googlegroups.com
 Date: Wednesday, July 30, 2014 at 2:46 PM
 To: beagleboard@googlegroups.com
 mailto:beagleboard@googlegroups.com beagleboard@googlegroups.com
 mailto:beagleboard@googlegroups.com
 Subject: Re: [beagleboard] cryptsetup / LUKS disk encryption on Debian
 not working

 On 07/30/2014 02:38 PM, niko.hee...@gmail.com wrote:
 Is anyone running a encrypted usb drive on debian on the bbb?
 Because I think this might be a bug... Mine keeps crashing and I
 have basically nothing else installed / configured.
 Any help would be greatly appreciated!




 On Sunday, July 27, 2014 1:04:43 PM UTC+2, niko@gmail.com wrote:

 S...

 I made a SD card with the latest debian RCN demo-image
 (2014-07-06). This time cryptsetup works a little better but
 it is far from operational.
 What I did:
   sudo cryptsetup --verbose --verify-passphrase luksFormat
 /dev/sdb1
   sudo cryptsetup luksOpen /dev/sdb1 sdb1
   sudo mkfs.ext4 /dev/mapper/sdb1

 At this point the BBB crashes. The first time I got a kernel
 panic warning on ssh:
   kernel:[79920.677253] Kernel panic - not syncing:
 hung_task: blocked tasks

 So I formatted the usb drive to ext4 on my PC, hooked it back
 to the BBB and opened it there. This worked. However writing
 to the disk will again crash my poor BBB.

 Anyone any ideas how I could make BBB debian work with LUKS
 on an external disk?

 Cheers
 N

 On Tuesday, July 22, 2014 10:14:24 PM UTC+2, RobertCNelson
 wrote:

 On Tue, Jul 22, 2014 at 3:06 PM,  niko@gmail.com
 wrote:
  No such file or directory...
 
  I am running a Debian Wheezy I downloaded from the BBB
 Wiki a while ago. Can
  this also be updated (using your tools)?
  Would there be a simple way to migrate?

 Sadly nope. As it's not my image, so the automated
 install-me.sh/etc http://install-me.sh/etc
 is not guaranteed to work/boot.

 But you can always build that kernel branch and install
 the kernel
 image/dtbs/modules where they need to be.

 Regards,

 -- 
 Robert Nelson
 http://www.rcn-ee.com/

 -- 
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the
 Google Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it,
 send an email to beagleboard+unsubscr...@googlegroups.com
 mailto:beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.
 Oh forgot to mention the only thing different I did was apply the
 nuke patchset. Been going about 4 months on that install.
 -- 
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it,
 send an email to beagleboard+unsubscr...@googlegroups.com
 mailto:beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 -- 
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard+unsubscr...@googlegroups.com
 mailto:beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

actually if you read them both they both have different content. Second
one was a fact I forgot to mention in the first, would have taken you
less time to re-read them both than typing that out  lol

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] What are the 'dmidecode' and 'lspci' equivalents on ARM?

2014-07-30 Thread sudhir v
For no reason I want to just explore the system and its details. I came 
across this command 'dmidecode' which is supposed to dump all the hardware 
information. It did not work on BBB and I did some searching on google and 
on one of the ARM forums it has been mentioned that 'dmidecode' does not 
work on ARM systems and people over there were still discussing on what can 
be done regarding this. I do not want to dive too deep for now. All I want 
to see is details about the BBB. 
I have tried lscpu, lsblk, lsusb. Things that did not work were dmidecode 
and lscpi. Is there a way I can work around this?

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Rev C processor in adafruit website - AM3359 ?

2014-07-30 Thread sudhir v
So I just bought a new BBB and I purchased it from adafruit. I noticed that 
the website says rev C will have AM3359AZCZ100 processor but my board has 
AM3358BZCZ100 on it.  Is it just a mistake while advertising? (This could 
be the case since they clearly mention 1GHz and 2000MIPS) 

Thank you, 
Sudhir

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] What are the 'dmidecode' and 'lspci' equivalents on ARM?

2014-07-30 Thread Sid Boyce

lshw is available at least on Ubuntu.
Regards
Sid.

On 31/07/14 00:24, sudhir v wrote:
For no reason I want to just explore the system and its details. I 
came across this command 'dmidecode' which is supposed to dump all the 
hardware information. It did not work on BBB and I did some searching 
on google and on one of the ARM forums it has been mentioned that 
'dmidecode' does not work on ARM systems and people over there were 
still discussing on what can be done regarding this. I do not want to 
dive too deep for now. All I want to see is details about the BBB.
I have tried lscpu, lsblk, lsusb. Things that did not work were 
dmidecode and lscpi. Is there a way I can work around this?

--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to the Google 
Groups BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to beagleboard+unsubscr...@googlegroups.com 
mailto:beagleboard+unsubscr...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot
Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support
Senior Staff Specialist, Cricket Coach
Microsoft Windows Free Zone - Linux used for all Computing Tasks

--
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups BeagleBoard group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] What are the 'dmidecode' and 'lspci' equivalents on ARM?

2014-07-30 Thread sudhir v
My board is running Debian 7.4 (Wheezy) on it and lshw gives Bus error

Thanks,
sudhir

On Wednesday, 30 July 2014 20:20:18 UTC-4, Sid Boyce wrote:

  lshw is available at least on Ubuntu.
 Regards
 Sid.

 On 31/07/14 00:24, sudhir v wrote:
  
 For no reason I want to just explore the system and its details. I came 
 across this command 'dmidecode' which is supposed to dump all the hardware 
 information. It did not work on BBB and I did some searching on google and 
 on one of the ARM forums it has been mentioned that 'dmidecode' does not 
 work on ARM systems and people over there were still discussing on what can 
 be done regarding this. I do not want to dive too deep for now. All I want 
 to see is details about the BBB.  
 I have tried lscpu, lsblk, lsusb. Things that did not work were dmidecode 
 and lscpi. Is there a way I can work around this?
  -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.



 -- 
 Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot
 Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support
 Senior Staff Specialist, Cricket Coach
 Microsoft Windows Free Zone - Linux used for all Computing Tasks

  

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread John Syn

From:  Brian Heckathorne neo...@gmail.com
Reply-To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Date:  Wednesday, July 30, 2014 at 3:48 PM
To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Subject:  Re: [beagleboard] Re: RIP Never Used BBB

 
 John no worries my friend I hope you didnt take offense im a Texan to boot and
 was only thinking outloud. Wasnt implying anyone made a mistake or how smart
 they are or are not. Ive been quite surprised how on top of everything Gerald
 is. No doubts John hope you didnt take offense or think I was downing the
 product any. Was NOT the case. I think its a great product and cant wait to
 see whats next.

Don¹t worry so much, nobody gets too serious here. Gerald explained his
thinking a while ago and I was just giving him a break because he is really
busy working on his next project.

Regards,
John
  
 
 Personally I wish the support for bonescript was larger but that will take
 time. 
 
 On Jul 30, 2014 5:27 PM, John Syn john3...@gmail.com wrote:
 
 From:  neo...@gmail.com
 Reply-To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
 Date:  Wednesday, July 30, 2014 at 1:11 PM
 To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
 Subject:  Re: [beagleboard] Re: RIP Never Used BBB
 
 I wasn't saying make it bullet proof, just some simple goof proofs. Like on
 the 5v plug, that kind of thing. I get the whole cost thing and by and large
 agree. 
 
 I'm sure to try and cover everything would cost a bit, Not sure why anyone
 would be putting 220v to the 5v plug, but i could understand reverse
 polarity on the 5v plug. Not sure it needs to be gone to the extreme.
 
 How hard/costly is it to fix something like reverse polarity or blown gpio?
 if repairs are easy enough, perhaps protection isn't worth it.
 Think economics and not technical. Since there were very few returns because
 of reverse polarity, it isn¹t cost effective to add the protection to each
 board. For example, circuitco has shipped 177,000 BBB multiplied by $10
 protection is $1,770,000. Less than 20 returned because of reverse polarity
 at $55 each is $1,100. The solution is obvious. Gerald is very smart and he
 knows what he is doing ;-) Users just need to be more careful.
 
 Regards, 
 John
 
 
 On Wednesday, July 30, 2014 3:00:10 PM UTC-5, john3909 wrote:
 
 From:  neo...@gmail.com
 Reply-To:  beagl...@googlegroups.com beagl...@googlegroups.com
 Date:  Wednesday, July 30, 2014 at 12:50 PM
 To:  beagl...@googlegroups.com beagl...@googlegroups.com
 Cc:  candy...@gmail.com
 Subject:  [beagleboard] Re: RIP Never Used BBB
 
 I think I would of paid 10 - 12 extra bux for a BBB that had some
 protection. Feels like at any moment my BBB might suddenly spontaneously
 contract magic smoke disease and all it's electrons fall out.
 Since there are very few of you who have done this, why should the rest of
 us have to pay the extra cost. I think there are less than 20 out of
 150,000 boards shipped.
 
 Regards,
 John
 
 
 On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:
 
 hello people, please excuse my for my Tarzan English.
 first connect my BBB with a 5V supply 4A with the negative in the middle,
 might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout
 https://groups.google.com/d/optout .
 
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.
 
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to a topic in the Google
 Groups BeagleBoard group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/beagleboard/iiqYyjTuGHM/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.
 
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google 

Re: [beagleboard] Rev C processor in adafruit website - AM3359 ?

2014-07-30 Thread John Syn

From:  sudhir v sudhir...@gmail.com
Reply-To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Date:  Wednesday, July 30, 2014 at 4:38 PM
To:  beagleboard@googlegroups.com beagleboard@googlegroups.com
Subject:  [beagleboard] Rev C processor in adafruit website - AM3359 ?

 So I just bought a new BBB and I purchased it from adafruit. I noticed that
 the website says rev C will have AM3359AZCZ100 processor but my board has
 AM3358BZCZ100 on it.  Is it just a mistake while advertising? (This could be
 the case since they clearly mention 1GHz and 2000MIPS)
 
 Thank you, 
 Sudhir
Processors are identical other than support for EtherCAT Slave. AM3358 runs
at 1GHz.

http://www.ti.com/product/AM3352/compare

View the table for comparison.

Regards,
John
 
 
 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Using SPI in a kernel module

2014-07-30 Thread liyaoshi
I mean you should follow the ifx6x60c driver struct . use tty driver as
general out and input .

Dont' use sys_open .




2014-07-30 17:14 GMT+08:00 nwk...@gmail.com:

 When I insmod ifx6x60.ko, its probe method isn't called either. Is there
 anything else I have to do?

 Am Mittwoch, 30. Juli 2014 04:06:19 UTC+2 schrieb liyaoshi:

 Actually , I have write a driver based on iMX6 and V850 , implement via
 tty driver .

 And suggest you follow kernel driver ifx6x60.c

 Regards


 2014-07-30 3:13 GMT+08:00 John Syn john...@gmail.com:


 From: nwk...@gmail.com
 Reply-To: beagl...@googlegroups.com beagl...@googlegroups.com

 Date: Tuesday, July 29, 2014 at 7:33 AM
 To: beagl...@googlegroups.com beagl...@googlegroups.com

 Subject: Re: [beagleboard] Using SPI in a kernel module

 Thanks, John.

 I Iooked at kernel/drivers/iio/dac/ad/5064.c

 There's the following struct which is passed to *spi_register_driver()*:
 static struct spi_driver ad5064_spi_driver = {
 .driver = {
.name = ad5064,
.owner = THIS_MODULE,
 },
 .probe = ad5064_spi_probe,
 .remove = ad5064_spi_remove,
 .id_table = ad5064_spi_ids,
 };

 I compiled the module and loaded it but the probe function never gets
 called. Why?

 From this I can see that this driver isn’t DeviceTree enabled so I’m not
 sure which SPI interface it is using. Either you can add the devicetree
 support to this driver so that you can specify which SPI interface to use,
 or e-mail the Linux-IIO mailing list and see how to use this driver.

 Regards,
 John




 Am Montag, 28. Juli 2014 18:09:34 UTC+2 schrieb john3909:


 From: Nils nwk...@gmail.com
 Reply-To: beagl...@googlegroups.com beagl...@googlegroups.com
 Date: Monday, July 28, 2014 at 7:00 AM
 To: beagl...@googlegroups.com beagl...@googlegroups.com
 Subject: [beagleboard] Using SPI in a kernel module

 Hello,

 I'm currently working on a kernel module which needs to communicate via
 SPI to an external microchip.

 I used the cape manager to enable SPI. The device is accessible through
 /dev/spidev1.0.
 But since it's a kernel module, I guess it's not recommended to access
 files via sys_open()?

 Another approach I found would be adding a struct to 
 *arch/arm/mach-omap2/board-am335xevm.c
 *and then use *spi_register_driver()* in my kernel module. But in my
 kernel sources (3.8.13) this file doesn't exist.

 There is no board files since the introduction of device tree.



 What would be the right way to use SPI in my kernel module?

 Look at examples in /drivers/staging/iio or /drivers/iio

 There are plenty of examples of using SPI calls in a kernel module.

 Use the power of GIT to find what you are looking for. In the Kernel
 source do the following:

 git grep spi_sync_transfer

 Regards,
 John



 Regards,
 Nils

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread William Hermans
This is something *anyone* should check. Always. But of course it doesnt
happen 100% of the time. Much easier than waiting x amount of time for the
new one to arrive, not to mention now you're out ~$60 US.


On Wed, Jul 30, 2014 at 6:02 PM, John Syn john3...@gmail.com wrote:


 From: Brian Heckathorne neo...@gmail.com
 Reply-To: beagleboard@googlegroups.com beagleboard@googlegroups.com
 Date: Wednesday, July 30, 2014 at 3:48 PM

 To: beagleboard@googlegroups.com beagleboard@googlegroups.com
 Subject: Re: [beagleboard] Re: RIP Never Used BBB

 John no worries my friend I hope you didnt take offense im a Texan to boot
 and was only thinking outloud. Wasnt implying anyone made a mistake or how
 smart they are or are not. Ive been quite surprised how on top of
 everything Gerald is. No doubts John hope you didnt take offense or think I
 was downing the product any. Was NOT the case. I think its a great product
 and cant wait to see whats next.

 Don’t worry so much, nobody gets too serious here. Gerald explained his
 thinking a while ago and I was just giving him a break because he is really
 busy working on his next project.

 Regards,
 John

 Personally I wish the support for bonescript was larger but that will take
 time.
 On Jul 30, 2014 5:27 PM, John Syn john3...@gmail.com wrote:


 From: neo...@gmail.com
 Reply-To: beagleboard@googlegroups.com beagleboard@googlegroups.com
 Date: Wednesday, July 30, 2014 at 1:11 PM
 To: beagleboard@googlegroups.com beagleboard@googlegroups.com
 Subject: Re: [beagleboard] Re: RIP Never Used BBB

 I wasn't saying make it bullet proof, just some simple goof proofs. Like
 on the 5v plug, that kind of thing. I get the whole cost thing and by and
 large agree.

 I'm sure to try and cover everything would cost a bit, Not sure why
 anyone would be putting 220v to the 5v plug, but i could understand reverse
 polarity on the 5v plug. Not sure it needs to be gone to the extreme.

 How hard/costly is it to fix something like reverse polarity or blown
 gpio? if repairs are easy enough, perhaps protection isn't worth it.

 Think economics and not technical. Since there were very few returns
 because of reverse polarity, it isn’t cost effective to add the protection
 to each board. For example, circuitco has shipped 177,000 BBB multiplied by
 $10 protection is $1,770,000. Less than 20 returned because of reverse
 polarity at $55 each is $1,100. The solution is obvious. Gerald is very
 smart and he knows what he is doing ;-) Users just need to be more careful.

 Regards,
 John



 On Wednesday, July 30, 2014 3:00:10 PM UTC-5, john3909 wrote:


 From: neo...@gmail.com
 Reply-To: beagl...@googlegroups.com beagl...@googlegroups.com
 Date: Wednesday, July 30, 2014 at 12:50 PM
 To: beagl...@googlegroups.com beagl...@googlegroups.com
 Cc: candy...@gmail.com
 Subject: [beagleboard] Re: RIP Never Used BBB

 I think I would of paid 10 - 12 extra bux for a BBB that had some
 protection. Feels like at any moment my BBB might suddenly spontaneously
 contract magic smoke disease and all it's electrons fall out.

 Since there are very few of you who have done this, why should the rest
 of us have to pay the extra cost. I think there are less than 20 out of
 150,000 boards shipped.

 Regards,
 John



 On Tuesday, July 29, 2014 10:42:01 PM UTC-5, candy...@gmail.com wrote:


 hello people, please excuse my for my Tarzan English.
 first connect my BBB with a 5V supply 4A with the negative in the
 middle, might have killed her so easily?
 now with the positive in the middle got hot and nothing more happend.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to a topic in the
 Google Groups BeagleBoard group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/beagleboard/iiqYyjTuGHM/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to 

Re: [beagleboard] BBB Rev C: Debian: PureJavaComm/JNA test fails

2014-07-30 Thread William Hermans
Does the file exist at that location? You seem to be trying to run your app
as root, so its not a permission problem. Also from memory /tmp/ will not
persist between reboots. SO perhaps not the best place to put any file that
is needed long term.


On Wed, Jul 30, 2014 at 2:32 PM, Datenheld datenh...@gmail.com wrote:

 P.S.

 You might also want to consider using the LinuxSerialPort class of
 libbulldog directly! Then you shouldn't have troubles due to Debian.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: RIP Never Used BBB

2014-07-30 Thread doog


On Wednesday, July 30, 2014 12:50:09 PM UTC-7, Brian wrote:

 I think I would of paid 10 - 12 extra bux for a BBB that had some 
 protection. Feels like at any moment my BBB might suddenly spontaneously 
 contract magic smoke disease and all it's electrons fall out. 


How much does the compatible 5V power supply cost? It stuns me anyone would 
plug in power without verifying the polarity is correct.  The way I see it, 
it's kinda like the Darwin Awards.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Beagleboard-XM

2014-07-30 Thread Maxim Podbereznyy
You can check inventory at specialcomp.com
They are the same manufacturer of BBx products
30 Июл 2014 г. 22:53 пользователь Gerald Coley ger...@beagleboard.org
написал:

 I already answered you on this.

 gerald


 On Wed, Jul 30, 2014 at 11:55 AM, solorzano.t...@gmail.com wrote:

 When will the beagleboard-XM be available again? Looks like all distis
 are out and no date for available.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.