Re: [beagleboard] libpruio with recent Debian on BBB?

2015-04-02 Thread TJF
Thanks for feedback, Brandon.

Am Mittwoch, 1. April 2015 20:00:02 UTC+2 schrieb Brandon Stafford:

 I was able to execute:

 sudo echo libpruio   /sys/devices/bone_capemgr.9/slots

 That produced this in dmesg: 
 ... 

[  796.652764] omap_hwmod: pruss: failed to hardreset


I also get this message here, but it works for me. (It seems that some 
driver programmers learned to output error messages at m$.) 
 

 After this, the analog pins worked as expected:


ADC always works, no matter which overlay you used to switch the PRUSS on. 
The question is: can you execute examples with run-time pinmuxing, like 
button or stepper?

BR

-- 
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: Cannot load device tree overlay at startup

2015-04-02 Thread Bremenpl

Same thing :/
https://pastebin.com/kkr55jmn

W dniu 2015-04-01 o 16:43, azizbahr...@gmail.com pisze:



On Tuesday, 31 March 2015 11:15:29 UTC+1, bremenpl wrote:

Hello there,
I am using a custom build kernel using the script from Mr Nelson
(https://github.com/RobertCNelson/bb-kernel.git
https://github.com/RobertCNelson/bb-kernel.git). I am facing
problems with loading a device tree overlay for dvi cape at
startup. I was abble to succesfully load the overlay using echo
BB-BONE-DVID-01  slots when running already. I tried sifferent
methods for loading the device tree at startup.

I tried creating uEnv.txt in /boot/ directory that contains:

|
# enable systemd
optargs=quiet init=/lib/systemd/systemd

# enable dvi
cape_enable=capemgr.enable_partno=BB-BONE-DVID-01
|



This havent worked so i tried editing /etc/default/capemgr with:

|
CAPE=BB-BONE-DVID-01
|



But that also did not help, the dts is not loading at startup.
I would aprichiate any hints on this case. Is there any step I
could possibly miss when loading device trees at startup?
I am using debian wheezy.




Hi,
Can you |try the following in uEnv.txt|
optargs|=capemgr.enable_partno=BB-BONE-DVID-01
|
--
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/mnw4Q7nXA3I/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
beagleboard+unsubscr...@googlegroups.com 
mailto:beagleboard+unsubscr...@googlegroups.com.

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


--
Bremenpl

--
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] New BeagleBone Black Metal Enclosure

2015-04-02 Thread Rigid Concepts
I've read topics on this board in the past and have dabbled with the 
BeagleBone Black and love it as a device.  We decided to develop a new 
innovative enclosure for the BeagleBone Black and we have.  

This is our launch weekend.  Anyone who uses the code ZRH22XCW will get 30% 
off starting tomorrow morning.  Check it out and let me know what you 
think:  http://www.amazon.com/gp/product/B00VKM2I5W

This is the only enclosure that has cable management built into it.  There 
are several mount types available:  DIN rail, magnetic (comes with 3 
magnets installed), thru hole.

Happy Easter,



Johnny


-- 
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] Bone-tester board information available?

2015-04-02 Thread Neabex
I'm trying to run some validation scripts on beaglebones and I saw the 
bone-tester recipe in https://github.com/jadonk/validation-scripts.
There are various references to a 'test board' of sorts, is there any 
information about this board available?
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.


[beagleboard] Re: Best node performance for an expressjs app

2015-04-02 Thread glslang
Haven't run your code on mine (and what I'm going to say is all 
theoretical) but you'd need to ensure your tcp stack is optimised to 
minimise latency even when using a loopback interface.  You still have the 
overhead of TCP (congestion control, flow control, stream management, IP 
packet ordering, retransmission, etc).
I wouldn't have expected the beaglebone to be significantly worse/better in 
this respect.

This article is quite 
nice http://techblog.netflix.com/2014/11/nodejs-in-flames.html and so 
perhaps we could use some of that to profile what's going on within Node.js 
itself.


On Monday, March 30, 2015 at 1:59:37 PM UTC+1, Matthew Karas wrote:

 The log I'm getting from this example app shows a minimum response time of 
 4 - 17 ms.   The route itself is doing nothing. Is this the quickest 
 response node can do on the bbb?  The board is only running the example 
 server.

 GET / 200 16.876 ms - 0
 GET / 200 4.474 ms - 0
 GET / 200 4.592 ms - 0
 GET / 200 4.375 ms - 0
 GET / 200 4.858 ms - 0
 GET / 200 4.613 ms - 0
 GET / 200 4.588 ms - 0
 GET / 200 4.397 ms - 0
 GET / 200 4.667 ms - 0
 GET / 200 4.406 ms - 0


 Current experiment code

 var express = require('express');
 var app = express();

 app.configure(function() {
 app.use(express.logger('dev'));  
 });

 app.get('/', function (req, res) {
   res.send('')
 })

 var server = app.listen(3000, '0.0.0.0', function () {

   var host = server.address().address
   var port = server.address().port

   console.log('Example app listening at http://%s:%s', host, port)

 })





-- 
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] Connecting a flow sensor directly to BBB

2015-04-02 Thread Geoffrey Carson
I am trying to connect a flow sensor directly to my BBB revC running Ubuntu 
trusty. I Have Strangebrew Elsinore up and running with 8 DS18B20 i-wire 
sensors. I want to utilize a hall sensor based flow sensor without having 
to get Arduino involved if possible. I am suffering sensory overload with 
this simple, I hope, task. Any help would be appreciated or even pointing 
me in the general direction.

-- 
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: Having to manually start Wifi

2015-04-02 Thread DeKay
This solution worked great for me on an image from a few months back.  I 
highly suggest taking this route.

http://madscientistlabs.blogspot.ca/2015/01/wifi-on-beaglebone-black-with-systemd.html


On Thursday, 19 March 2015 10:06:22 UTC-6, Nathaniel Johnson wrote:


 I have been trying to get wifi to work on the latest debian image.  It 
 does work but requires me to manually start it after logging in. If I log 
 in and type 'ifup wlan0' It works fine.  Even putting 'ifup wlan0' in 
 /etc/rc.local does not work.

 Here is a link to my etc/network/interfaces http://pastebin.com/37AjV6tG

 I also noticed this repeating over and over in /var/log/wicd/

 2015/03/01 22:03:16 :: Autoconnecting...
 2015/03/01 22:03:16 :: No wired connection present, attempting to 
 autoconnect to wireless network
 2015/03/01 22:03:18 :: Unable to autoconnect, you'll have to manually 
 connect


 The full file http://pastebin.com/8sznu2bB

 Any help would be appreciated.


-- 
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] Reboot diagnostic script

2015-04-02 Thread Robert Nelson
On Thu, Apr 2, 2015 at 7:03 AM,  pat_dela...@colonydrive.com wrote:
 I am trying to troubleshoot a problem I am having with the BBB just locking
 up after powering up the unit. In an effort to narrow down the issue, I have
 created a new sd card with the following image:
 bone-debian-7.5-2014-05-14-2gb.img

 I found a script that basically reboots the BBB every 60 seconds. I am
 seeing sometimes the unit just shuts down and doesn't come back. The Blue
 power LED is lit but that's it. For grins I issued a halt and when that is
 complete the blue power LED goes out. So sometimes after a reboot it gets
 into a zombie state with the power lite is lit, but nothing else.

 Does anyone have any ideas on what nay be wrong?

 Here is the link to the script I was using:
 http://bec-systems.com/site/942/running-a-reboot-cycle-test-shell-script-with-systemd


Use the new March 2015 release:

http://beagleboard.org/latest-images

Regards,

-- 
Robert Nelson
https://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] Reboot diagnostic script

2015-04-02 Thread pat_delaney
I am trying to troubleshoot a problem I am having with the BBB just locking 
up after powering up the unit. In an effort to narrow down the issue, I 
have created a new sd card with the following 
image: bone-debian-7.5-2014-05-14-2gb.img

I found a script that basically reboots the BBB every 60 seconds. I am 
seeing sometimes the unit just shuts down and doesn't come back. The Blue 
power LED is lit but that's it. For grins I issued a halt and when that is 
complete the blue power LED goes out. So sometimes after a reboot it gets 
into a zombie state with the power lite is lit, but nothing else.

Does anyone have any ideas on what nay be wrong?

Here is the link to the script I was using:
http://bec-systems.com/site/942/running-a-reboot-cycle-test-shell-script-with-systemd

Thanks  
Pat

-- 
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] Reboot diagnostic script

2015-04-02 Thread William Hermans
That covers intentional reboots, where 1 in 10 the board just does not come
up correctly ?

On Thu, Apr 2, 2015 at 11:48 AM, Robert Nelson robertcnel...@gmail.com
wrote:

 On Thu, Apr 2, 2015 at 1:46 PM, William Hermans yyrk...@gmail.com wrote:
  @Robert,
 
  Any idea what is causing this ? I seem to recall some talk a long time
 ago
  about perhaps the PMIC is causing this. Our A5A's exhibit this also, like
  once in 10 boots or so.
 
  Hopefully, it is not related to the older kernels. . .

 For random reboots, it's this fix:


 https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/arch/arm/boot/dts/am335x-bone-common.dtsi?id=67fd14b3eca63b14429350e9eadc5fab709a8821

 Regards,

 --
 Robert Nelson
 https://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.


-- 
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] Reboot diagnostic script

2015-04-02 Thread William Hermans
BTW, my cure for this has been shutdown now -h, and then manually
powering the board back up. However, while it did help the problem
drastically, it does not completely fix the problem.

On Thu, Apr 2, 2015 at 11:56 AM, William Hermans yyrk...@gmail.com wrote:

 That covers intentional reboots, where 1 in 10 the board just does not
 come up correctly ?

 On Thu, Apr 2, 2015 at 11:48 AM, Robert Nelson robertcnel...@gmail.com
 wrote:

 On Thu, Apr 2, 2015 at 1:46 PM, William Hermans yyrk...@gmail.com
 wrote:
  @Robert,
 
  Any idea what is causing this ? I seem to recall some talk a long time
 ago
  about perhaps the PMIC is causing this. Our A5A's exhibit this also,
 like
  once in 10 boots or so.
 
  Hopefully, it is not related to the older kernels. . .

 For random reboots, it's this fix:


 https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/arch/arm/boot/dts/am335x-bone-common.dtsi?id=67fd14b3eca63b14429350e9eadc5fab709a8821

 Regards,

 --
 Robert Nelson
 https://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.




-- 
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] Reboot diagnostic script

2015-04-02 Thread Robert Nelson
On Thu, Apr 2, 2015 at 1:56 PM, William Hermans yyrk...@gmail.com wrote:
 That covers intentional reboots, where 1 in 10 the board just does not come
 up correctly ?

I think we've nipped all of those... Combination u-boot/kernel
update and systemd *.conf files..

Regards,

-- 
Robert Nelson
https://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] Reboot diagnostic script

2015-04-02 Thread William Hermans

 *I think we've nipped all of those... Combination u-boot/kernel*
 * update and systemd *.conf files..*


Ouch ! See for one of the images I've built. We're hoping to completely
avoid systemd. As well as upgrading the kernel. Good luck to me on that eh
? Maybe I'll just toss on a battery or something . . .

On Thu, Apr 2, 2015 at 11:59 AM, Robert Nelson robertcnel...@gmail.com
wrote:

 On Thu, Apr 2, 2015 at 1:56 PM, William Hermans yyrk...@gmail.com wrote:
  That covers intentional reboots, where 1 in 10 the board just does not
 come
  up correctly ?

 I think we've nipped all of those... Combination u-boot/kernel
 update and systemd *.conf files..

 Regards,

 --
 Robert Nelson
 https://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.


-- 
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] Reboot diagnostic script

2015-04-02 Thread Robert Nelson
On Thu, Apr 2, 2015 at 2:02 PM, William Hermans yyrk...@gmail.com wrote:
 I think we've nipped all of those... Combination u-boot/kernel
 update and systemd *.conf files..


 Ouch ! See for one of the images I've built. We're hoping to completely
 avoid systemd. As well as upgrading the kernel. Good luck to me on that eh ?
 Maybe I'll just toss on a battery or something . . .

The systemd settings are for proper shutdown/etc..  You can sorta get
acpid to also do it..

It's just another situation, where systemd replaced a crappy tool.. ;)

Regards,

-- 
Robert Nelson
https://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] No HDMI output on beagleBone Black

2015-04-02 Thread Robert Nelson
On Thu, Apr 2, 2015 at 10:22 AM, Jason Kridner jkrid...@gmail.com wrote:




 On Apr 2, 2015, at 9:28 AM, Robert Nelson robertcnel...@gmail.com wrote:

 On Thu, Apr 2, 2015 at 8:25 AM, Robert Nelson robertcnel...@gmail.com 
 wrote:
 Retest with: 2015-03-01 from:

 http://beagleboard.org/latest-images

 2.   VGA to Micro HDMI connector.

 and just noticed ^

 Yeah, unless you paid lots of $, it's probably a passive cable, in
 which case that's not supported.

 With HDMI, there shouldn't be passive adapters as HDMI is digital only. DVI-I 
 has both.

 EDID can often be an issue with these adapters.

ATi use to have some passive adapters in the wild, i've seen where the
video card will detect their custom hdmi cable and pass vga signals
thru it..

There are a lot more active hdmi - vga cables now on amazon too...
But they must be externally powered, as the bbb can't supply enough
power on it's own thru the hdmi port.

http://www.amazon.com/Cable-Matters-Active-Female-Adapter/dp/B008O7RH5C

As long as they properly pass the i2c bus used for edid read's, the
bbb should detect the vga screen.

Regards,

-- 
Robert Nelson
https://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] No HDMI output on beagleBone Black

2015-04-02 Thread Jason Kridner




 On Apr 2, 2015, at 9:28 AM, Robert Nelson robertcnel...@gmail.com wrote:
 
 On Thu, Apr 2, 2015 at 8:25 AM, Robert Nelson robertcnel...@gmail.com 
 wrote:
 Retest with: 2015-03-01 from:
 
 http://beagleboard.org/latest-images
 
 2.   VGA to Micro HDMI connector.
 
 and just noticed ^
 
 Yeah, unless you paid lots of $, it's probably a passive cable, in
 which case that's not supported.

With HDMI, there shouldn't be passive adapters as HDMI is digital only. DVI-I 
has both. 

EDID can often be an issue with these adapters. 

 
 Regards,
 
 -- 
 Robert Nelson
 https://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.

-- 
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] No HDMI output on beagleBone Black

2015-04-02 Thread Robert Nelson
On Thu, Apr 2, 2015 at 8:25 AM, Robert Nelson robertcnel...@gmail.com wrote:
 Retest with: 2015-03-01 from:

 http://beagleboard.org/latest-images


 2.   VGA to Micro HDMI connector.

and just noticed ^

Yeah, unless you paid lots of $, it's probably a passive cable, in
which case that's not supported.

Regards,

-- 
Robert Nelson
https://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] No HDMI output on beagleBone Black

2015-04-02 Thread Robert Nelson
Retest with: 2015-03-01 from:

http://beagleboard.org/latest-images

On Thu, Apr 2, 2015 at 8:12 AM, dheeraj jha dheerajjha...@gmail.com wrote:
 Hi,

 We we are not able to get the HDMI output through the board, in this regard
 we went to the supp...@beagleboard.org and after the back and forth
 communication with them they suggested for the forum:
 Below mentioned is that E-mail communication, if any one can help in this
 regard it will be really helpful:

 Cnversation:

 Hi

 We are not able to get the HDMI output from the Beagle bone black board on
 the monitor which is having the resolution as 640 * 480 of HP company, only
 an image flash for few second and then disappear after that.
 Please find in the attached screenshot name “Instance of Flash image.jpg”
 for the same.

 Following are the peripherals used by us for connecting the BeagleBone
 Black:

 1.   Beaglebone black Rev C Board.
 2.   VGA to Micro HDMI connector.
 3.   5V 2.0A Micro USB Adapter.
 4.   Monitor: HP: 640 * 480 .
 5.   USB cable.

 We are using below mentioned BeagleBone Black (eMMC flasher) image on the
 board:

 https://s3.amazonaws.com/angstrom/demo/beaglebone/BBB-eMMC-flasher-2013.09.04.img.xz

 Please provide some solution regarding this.

 SUPPORT replied: Verify the EDID information

 Response from our side:

 root@beaglebone:/sys/class/drm/card0/card0-HDMI-A-1# parse-edid edid
 parse-edid: parse-edid version 2.0.0
 parse-edid: IO error reading EDID

 2.   On further investigation I found that we need the read-edid
 package, So then I tried to install the read-edid package using command :
 opkg install read-edid

 root@beaglebone:/ opkg install read-edid
 Unknown package

 But I was not able to do so.

 3.   Also when I tried the “xrandr” command I got :

 root@beaglebone:/ xrandr
 root@beaglebone:/ Can’t Open the Display

 So, by no means i am able to get the EDID Information.

 Can you provide some solution in this regard.


 I am able to get the EDID information for the same monitor using the Ubuntu
 12.04 running on x86 board as you can see in the attached screenshot “EDID
 information_x86 board” .

 So, it seems the monitor has the EDID support.

 The image we flashed on the Beagleboard also contains the Xorg.conf file at
 the path /etc/X11 as you can find in the attached screenshot “Xorg.conf” do
 you think by adding something to this file will help.

 Please guide us in this direction.


 Thanks,
 Dheeraj

 --
 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.



-- 
Robert Nelson
https://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] Anyone successfully install the audio cape Rev B on kernel 3.18.+?

2015-04-02 Thread jh
Dear all, 

I'm struggling with Audio Cape Rev B installation on kernel 3.18.+. Since 
the capemgr is 
removed from the kernel version 3.13.+, how can I install the board on BBB? 
Any suggestion
would be appreciated, thank you in advance. 





-- 
*+1 514 587 6662*

1235 boulevard Dagenais ouest 
https://www.google.ca/maps/place/2KLIC+-+M2M+Platform/@45.599682,-73.749392,17z/data=!3m1!4b1!4m2!3m1!1s0x4cc92147fb607207:0x4e9e2c2492f0d2e6,
 
Laval, Qc H7L 4S3

.com http://2klic.com/

Facebook https://www.facebook.com/2klic - Twitter 
https://twitter.com/2KLIC - Google 
https://plus.google.com/+2klicgroup/posts - Linkedin 
https://www.linkedin.com/company/2klic

--
AVIS DE CONFIDENTIALITÉ
Ce document est destiné à l'usage exclusif de la personne ou  entité à 
laquelle il est adressé et peut contenir de l'information privilégiée et 
confidentielle.  Si ce document est lu par toute autre personne que le 
destinataire soyez par les présentes avisé(e) que toute divulgation, 
distribution ou copie du contenu de ce document est strictement interdite.  
Si vous avez reçu ce message électronique par erreur, veuillez aviser 
l'expéditeur immédiatement par retour de courrier électronique et supprimer 
ce message de votre système.

CONFIDENTIALITY NOTICE
This document is intended only for the exclusive use of the individual or 
entity to which it is addressed and may contain information that is 
privileged and confidential.  If the reader of this message is not the 
intended recipient , you are hereby notified that any disclosing, 
distributing, or copying of the content of this communication is strictly 
prohibited.  If you have received this communication in error, please 
notify the sender immediately by return email and delete this message and 
all attachments from your system.  

-- 
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] Reboot diagnostic script

2015-04-02 Thread William Hermans
@Robert,

Any idea what is causing this ? I seem to recall some talk a long time ago
about perhaps the PMIC is causing this. Our A5A's exhibit this also, like
once in 10 boots or so.

Hopefully, it is not related to the older kernels. . .

On Thu, Apr 2, 2015 at 5:08 AM, Robert Nelson robertcnel...@gmail.com
wrote:

 On Thu, Apr 2, 2015 at 7:03 AM,  pat_dela...@colonydrive.com wrote:
  I am trying to troubleshoot a problem I am having with the BBB just
 locking
  up after powering up the unit. In an effort to narrow down the issue, I
 have
  created a new sd card with the following image:
  bone-debian-7.5-2014-05-14-2gb.img
 
  I found a script that basically reboots the BBB every 60 seconds. I am
  seeing sometimes the unit just shuts down and doesn't come back. The Blue
  power LED is lit but that's it. For grins I issued a halt and when that
 is
  complete the blue power LED goes out. So sometimes after a reboot it gets
  into a zombie state with the power lite is lit, but nothing else.
 
  Does anyone have any ideas on what nay be wrong?
 
  Here is the link to the script I was using:
 
 http://bec-systems.com/site/942/running-a-reboot-cycle-test-shell-script-with-systemd
 

 Use the new March 2015 release:

 http://beagleboard.org/latest-images

 Regards,

 --
 Robert Nelson
 https://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.


-- 
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] Reboot diagnostic script

2015-04-02 Thread Robert Nelson
On Thu, Apr 2, 2015 at 1:46 PM, William Hermans yyrk...@gmail.com wrote:
 @Robert,

 Any idea what is causing this ? I seem to recall some talk a long time ago
 about perhaps the PMIC is causing this. Our A5A's exhibit this also, like
 once in 10 boots or so.

 Hopefully, it is not related to the older kernels. . .

For random reboots, it's this fix:

https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/arch/arm/boot/dts/am335x-bone-common.dtsi?id=67fd14b3eca63b14429350e9eadc5fab709a8821

Regards,

-- 
Robert Nelson
https://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] No HDMI output on beagleBone Black

2015-04-02 Thread William Hermans
Yes, I recently went looking for an hdmi - vga converter and most are
passive types in stores like Fry's electronics. Where the active ones run
like ~$50. Even on amazon they seem to start at around $34, and no
guarantee that they'll work for every device.

On Thu, Apr 2, 2015 at 8:34 AM, Robert Nelson robertcnel...@gmail.com
wrote:

 On Thu, Apr 2, 2015 at 10:22 AM, Jason Kridner jkrid...@gmail.com wrote:
 
 
 
 
  On Apr 2, 2015, at 9:28 AM, Robert Nelson robertcnel...@gmail.com
 wrote:
 
  On Thu, Apr 2, 2015 at 8:25 AM, Robert Nelson robertcnel...@gmail.com
 wrote:
  Retest with: 2015-03-01 from:
 
  http://beagleboard.org/latest-images
 
  2.   VGA to Micro HDMI connector.
 
  and just noticed ^
 
  Yeah, unless you paid lots of $, it's probably a passive cable, in
  which case that's not supported.
 
  With HDMI, there shouldn't be passive adapters as HDMI is digital only.
 DVI-I has both.
 
  EDID can often be an issue with these adapters.

 ATi use to have some passive adapters in the wild, i've seen where the
 video card will detect their custom hdmi cable and pass vga signals
 thru it..

 There are a lot more active hdmi - vga cables now on amazon too...
 But they must be externally powered, as the bbb can't supply enough
 power on it's own thru the hdmi port.

 http://www.amazon.com/Cable-Matters-Active-Female-Adapter/dp/B008O7RH5C

 As long as they properly pass the i2c bus used for edid read's, the
 bbb should detect the vga screen.

 Regards,

 --
 Robert Nelson
 https://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.


-- 
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] Bone-tester board information available?

2015-04-02 Thread Gerald Coley
Tester is for production use only that runs all the test scripts
automatically without a lot of user intervention. This information is not
made public.

Gerald

On Thu, Apr 2, 2015 at 4:16 PM, Neabex nick.g...@gmail.com wrote:

 I'm trying to run some validation scripts on beaglebones and I saw the
 bone-tester recipe in https://github.com/jadonk/validation-scripts.
 There are various references to a 'test board' of sorts, is there any
 information about this board available?
 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.




-- 
Gerald

ger...@beagleboard.org
http://beagleboard.org/
http://circuitco.com/support/

-- 
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.