Re: [beagleboard] /sys/device/bone_capemgr* doesn't exist on fresh image

2015-12-15 Thread William Hermans
https://github.com/boxysean/am335x_pru_package This one is different from the "stock" repo as he's added 3 examples all related to blinking LEDs. LEDs which are tied to GPIO pins . . .After that, google has lots to read. On Mon, Dec 14, 2015 at 8:47 PM, Sam Daleo wrote: > Hey, since I've got yo

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
Your problem is very likely that you do not have the files #include "am33xx.dtsi" #include "am335x-bone-common.dtsi" In your path. I get the same error here: $ dtc -O dtb -o am335x-bonegreen.dtbo -b 0 -@ am335x-bonegreen.dts Error: am335x-bonegreen.dts:10.1-9 syntax error FATAL ERROR: Unable to

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
One additional note: That git has the *bonegreen* dts file in it already. So git cloning that git, and running dtc in the src/arm/ directory for that file should just work. On Tue, Dec 15, 2015 at 3:58 AM, William Hermans wrote: > Your problem is very likely that you do not have the files > > #i

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
> > *One additional note: That git has the *bonegreen* dts file in it already. > So git cloning that git, and running dtc in the src/arm/ directory for that > file should just work.* > Following these line of reasoning, I get the same error. hmmm give me a minute. On Tue, Dec 15, 2015 at 4:01 AM,

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
strace output http://pastebin.com/8ype90wD I'm looking into it. On Tue, Dec 15, 2015 at 4:16 AM, William Hermans wrote: > *One additional note: That git has the *bonegreen* dts file in it already. >> So git cloning that git, and running dtc in the src/arm/ directory for that >> file should jus

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
Well I was attempting to create a *.dtbo file from the source, but here this works: $ git clone https://github.com/RobertCNelson/dtb-rebuilder.git Cloning into 'dtb-rebuilder'... remote: Counting objects: 6357, done. remote: Compressing objects: 100% (12/12), done. remote: Total 6357 (delta 3), re

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
Doh, I just realized you're working with a 3.8.x kernel . . . These instructions above I believe will only work with 4.x, as that's what the sourced in this repo are meant for. However, I bet the device tree source files are exactly the same. But unsure if dt-bindings are different or not. On Tue,

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
OK, wow those instructions are whack. First of all this is the proper way to use Robert's bb-kernel repo: https://eewiki.net/display/linuxonarm/BeagleBone+Black#BeagleBoneBlack-LinuxKernel Secondly, this builds all the necessary BBG files as well( as far as I know ). So in short . . . $ git clon

[beagleboard] BBB Angstrom EDIMAX Wifi stopped working after a while in drawer!

2015-12-15 Thread Richard Markham
Just dusted off my BBB and it's struggling to get wifi going - it was working fine a few months back. I have an Edimax usb wifi dongle in a 2A powered USB hub. ifconfig shows: wlan0 Link encap:Ethernet HWaddr 74:DA:38:0C:C7:8B UP BROADCAST MULTICAST MTU:1500 Metric:1

[beagleboard] Setting GPIO Values "from cold" startup???

2015-12-15 Thread Bill Gray
Hi, I'm developing a system that uses PRU 1 to send a PWM to a switched mode power converter. When I first turn the system on, I want the PWM signal to be low. If the pin is high, I will pretty much surely blow my mosfets as current surges through my circuit. For some reason, when I first tu

[beagleboard] hub_port_status failed (err = -110)

2015-12-15 Thread richmpark
I am currently working on a project which requires a USB 2.0 hub to provide connectivity to a touchscreen LCD panel and a USB flash drive. The touchscreen USB is connected at boot and operates fine. When I insert the flash drive after the system has started I get the following error message whi

Re: [beagleboard] Setting GPIO Values "from cold" startup???

2015-12-15 Thread Gerald Coley
The datasheet tells you the default for all the pins on power up. Some are high and some are low. Until the SW changes that, they stay and the preset levels. http://www.ti.com/product/am3358 Gerald On Tue, Dec 15, 2015 at 12:04 PM, Bill Gray wrote: > Hi, > > I'm developing a system that uses

Re: [beagleboard] NI VISA for BeagleBone Green

2015-12-15 Thread shantheman
Thank you Robert, much appreciated. I was able to flash my green with this image. Then i typed "uname -r" and received "3.8.13-bone79", so indeed it did load this version of Kernel. Then i tried loading NI-VISA again and I receive almost the same message: * Kernel source does not appear to b

Re: [beagleboard] NI VISA for BeagleBone Green

2015-12-15 Thread Robert Nelson
On Tue, Dec 15, 2015 at 12:25 PM, wrote: > Thank you Robert, much appreciated. I was able to flash my green with this > image. Then i typed "uname -r" and received "3.8.13-bone79", so indeed it > did load this version of Kernel. Then i tried loading NI-VISA again and I > receive almost the sam

[beagleboard] Recommended Image

2015-12-15 Thread Bit Pusher
I'm starting to update from an outdated image and to be clean am planning on starting from scratch with a newly flashed image. On http://beagleboard.org/latest-images there are two possible Debian images from Nov. 12'th, Wheezy 7.9 and Jessie 8.2. It is not clear which image I should use. I'm usi

Re: [beagleboard] Recommended Image

2015-12-15 Thread William Hermans
Both will work, however you have to answer this question for yourself. Would you prefer to use systemd, or init as an init daemon ? Debian 8.x is Jessie, and will have newer packages. 7.x is Wheezy, and will have older packages, but also has been "proven". On Tue, Dec 15, 2015 at 1:45 PM, Bit Push

Re: [beagleboard] Setting GPIO Values "from cold" startup???

2015-12-15 Thread Bill Gray
Gerald, Thanks so much. How interesting! I suppose I can just cold boot the BBB and see which pins are where to figure out where things start, but I would love to read up more on this given that my hardware could get bricked if something were to change. Since I got your reply I've been pouri

Re: [beagleboard] Recommended Image

2015-12-15 Thread William Hermans
What I personally use, and this is not for a production system per se is Wheezy 7.8. Once that image is installed, I then upgrade to a newer 4.1.x kernel, and that's where I've been happy lately. I do a lot of personal testing of various hardware modules, etc, and have found this setup mostly solid

Re: [beagleboard] Setting GPIO Values "from cold" startup???

2015-12-15 Thread John Syne
It is in the Datasheet. Regards, John > On Dec 15, 2015, at 12:52 PM, Bill Gray wrote: > > Gerald, > > Thanks so much. > > How interesting! I suppose I can just cold boot the BBB and see which pins > are where to figure out where things start, but I would love to read up more > on this

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread Keith Conger
Hi William, Thanks for looking at this for me. I'm using 3.8 for video acceleration and Android. I have not been able to get more recent kernels to fully work with everything I need on BBB. I copied the dts file from the am33x-v3.8 tree into my kernel and was able to build and boot the kernel

Re: [beagleboard] Setting GPIO Values "from cold" startup???

2015-12-15 Thread Gerald Coley
It is in the data sheet, not the TRM. Table 4-1, columns 7 and 8. Gerald On Tue, Dec 15, 2015 at 2:52 PM, Bill Gray wrote: > Gerald, > > Thanks so much. > > How interesting! I suppose I can just cold boot the BBB and see which > pins are where to figure out where things start, but I would lov

[beagleboard] BeagleBoard xM with ubuntu 12.04 and opencv slow with face detection

2015-12-15 Thread Michaila Goula-Dimitriou
Hello, I have an issue and I would appreciate it if someone could help. I am running ubuntu 12.04 on a beagleboard xm. I have also installed opencv. Now I need to run an application which performs face, eyes and smile detection with a webcam. I am having a hard time with this because the image

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread William Hermans
> > *I'm using 3.8 for video acceleration and Android. I have not been able > to get more recent kernels to fully work with everything I need on BBB.* > > *I copied the dts file from the am33x-v3.8 tree into my kernel and was > able to build and boot the kernel. Now I'm trying to get the 4D LCD4

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread Robert Nelson
On Tue, Dec 15, 2015 at 4:08 PM, William Hermans wrote: >> I'm using 3.8 for video acceleration and Android. I have not been able to >> get more recent kernels to fully work with everything I need on BBB. >> >> I copied the dts file from the am33x-v3.8 tree into my kernel and was able >> to build

[beagleboard] install debian on beaglebone black

2015-12-15 Thread mkurtz19
Hi, I have a custom BeagleBone Black and I'm trying to install Debian onto it, but it's not working. The output is attached. I'm getting the output through a serial cable. Thanks in advance.

Re: [beagleboard] install debian on beaglebone black

2015-12-15 Thread Gerald Coley
This is certainly not a BeagleBone Black. More like and X15 flavor. Gerald On Tue, Dec 15, 2015 at 4:41 PM, wrote: > Hi, > I have a custom BeagleBone Black and I'm trying to install Debian onto it, > but it's not working. The output is attached. I'm getting the output > through a serial cable

Re: [beagleboard] install debian on beaglebone black

2015-12-15 Thread Robert Nelson
On Tue, Dec 15, 2015 at 4:41 PM, wrote: > Hi, > I have a custom BeagleBone Black and I'm trying to install Debian onto it, > but it's not working. The output is attached. I'm getting the output > through a serial cable. > You mean x15... Update the bootloader on your microSD card: wget http:

[beagleboard] BBB's uboot-2015.10

2015-12-15 Thread Bharath R
Hi, I'm using uboot-2015.10 version and buildroot 4.9.3 for BBB. I did the following wget ftp://ftp.denx.de/pub/u-boot/u-boot-latest.tar.bz2 tar -xjf u-boot-latest.tar.bz2 cd u-boot-2015.10 wget https://rcn-ee.com/repos/git/u-boot-patches/v2015.10/0001-am335x_evm-uEnv.txt-bootz-n-fixes.patch p

Re: [beagleboard] BBB's uboot-2015.10

2015-12-15 Thread Robert Nelson
On Tue, Dec 15, 2015 at 7:51 PM, Bharath R wrote: > Hi, > > I'm using uboot-2015.10 version and buildroot 4.9.3 for BBB. > > I did the following > > wget ftp://ftp.denx.de/pub/u-boot/u-boot-latest.tar.bz2 > tar -xjf u-boot-latest.tar.bz2 > cd u-boot-2015.10 > wget > https://rcn-ee.com/repos/git/

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread Keith Conger
I've got my LCD working but I'm struggling with enabling UART2 with it connected. I'm getting a conflict between the two: [1.749303] bone-capemgr bone_capemgr.9: slot #5: BB-UART2 conflict P9.21 (#3:BB-BONE-LCD4-01) What's weird is the LCD's datasheet doesn't show that pin being used. http

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread Robert Nelson
On Tue, Dec 15, 2015 at 8:46 PM, Keith Conger wrote: > I've got my LCD working but I'm struggling with enabling UART2 with it > connected. > > I'm getting a conflict between the two: > [1.749303] bone-capemgr bone_capemgr.9: slot #5: BB-UART2 conflict P9.21 > (#3:BB-BONE-LCD4-01) > > What's we

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread Keith Conger
I'm using 3.8.13. In the kernel source I'm using BB-BONE-LCD4-01-00A1.dts does have that pin being used. I just found the article below. So I've removed the offending lines and I'm creating a new image to test. https://accustrata.wordpress.com/2014/10/27/lcd4-cape-and-circuitco-adc-cape-work

Re: [beagleboard] Trying to build a 3.8.13 kernel with seeeds BBG patches

2015-12-15 Thread Robert Nelson
On Tue, Dec 15, 2015 at 9:18 PM, Keith Conger wrote: > I'm using 3.8.13. In the kernel source I'm using BB-BONE-LCD4-01-00A1.dts > does have that pin being used. I just found the article below. So I've > removed the offending lines and I'm creating a new image to test. > > https://accustrata.w

[beagleboard] Re: X11VNC fighting me tooth and nail. Would really appreciate some help.

2015-12-15 Thread Bill Dussault
I am trying (Big picture here) to run Machinekit on the beaglebone for my CNC router. I am trying to use VNC to be able to run the machine with the computer out of the room to prevent everything from getting dusty. I have x11vnc installed on the bone but cannot connect to it over the ethernet. I

Re: [beagleboard] Problem with power supply on BBB

2015-12-15 Thread John Syne
When measuring with an oscilloscope, keep the probe as short as possible. For example, short the ground to the probe tip and place the probe near the switcher. If you still see the switching spikes, then your probe ia too long. A ground wire of 3 or 4 inches is too long. As I said before, electr

Re: [beagleboard] Problem with power supply on BBB

2015-12-15 Thread Morgan Redfield
Thanks John, I hear you on the ceramic capacitors. I'll be switching those out tomorrow. For now I wanted to get an idea of what the power rail looked like with the current setup, so I could see if there was anything else that may obviously be contributing to the burned out BBBs that I have. I'm

Re: [beagleboard] Problem with power supply on BBB

2015-12-15 Thread John Syne
> On Dec 15, 2015, at 9:44 PM, Morgan Redfield wrote: > > Thanks John, > > I hear you on the ceramic capacitors. I'll be switching those out tomorrow. > For now I wanted to get an idea of what the power rail looked like with the > current setup, so I could see if there was anything else that