[beagleboard] How to exchange data between host C prog and PRU C prog?

2014-12-31 Thread Karteek YV
My objective is to poll sensor output using GPIO and process the data. The CPU is missing some of the pulses from sensor while processing the previous data. My idea is to use PRU to count the sensor pulses and provide the counter value to CPU using shared memory. I am using C code for PRU after

Re: [beagleboard] setup_sdcard.sh ERROR

2014-12-31 Thread xuantruong1911
Hi Robert, How I can install Ubuntu 12.04 / 12.10 when it had been EOL? 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

[beagleboard] Relay Alternative for a Low powered module on/off

2014-12-31 Thread Kevin D'Souza
I have an application that needs a XBee and another module to be turned on and off digitally via a BealgeboneBlack. The Setup is 2 XBee's and an application board is connected to the BealgeboneBlack's UART and a GPIO for the power state . When the System is Powered ON I need 1 Xbee and the

[beagleboard] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread Metro
None of the solutions are working.I dont know where i am lacking.Ok let me give you more details about the systems. I am in a process to make a linux kiosk.Wher only one GUI will run , so to directly go to gui i have modified the system as follows: 1. Installed OpenBox. 2. edited

[beagleboard] How to wait for rising edge with pruss?

2014-12-31 Thread JJ
So, how to set rising edge detection in pruio-lib without the following while-loop: pruIo *io = pruio_new(PRUIO_DEF_ACTIVE, 0x98, 0, 1); int gpiovalue; while(1) { gpiovalue = pruio_gpio_Value(io, PIN); if (gpiovalue == 1) { ///capturedatacode... } I have a device and it

[beagleboard] eglibc is no longer developed

2014-12-31 Thread hanshony
While building a crosstool-ng toolchain for my Mac, I noticed the following: 1. ldd --version on my BBB gives 'Debian EGLIBC 2.13-38' 2. eglibc.org http://www.eglibc.org/home says that it is no longer supported 3. ct-ng recent issue response

[beagleboard] Add 8GB 8bit nand support along with 4GB on chip eMMC on BBB with Kernel 3.8.13

2014-12-31 Thread dhvani001
Hi I am new to BBB. The BBB has 4GB emmc support which is using GPMC pins. I want to add another 8GB 8bit Nand flash using GPMC. We are using same data bus of GPMC data. The difference is only control signal. We are using MT29F64G08CFACA chip for 8GB NAND flash. Is there any support of

[beagleboard] beaglebone black jtag/pru beginner advice

2014-12-31 Thread tolga . ceylan
Hi All, I've just purchased a beaglebone black for the purposes of learning embedded development and work on some fun robotics personal projects. I'd like to experiment with real-time processing, rt-linux, etc. And perhaps test/develop some pru code as well. But this is a personal project, so

[beagleboard] Re: BBB TP5/6/7/8 (external battery) mechanical location

2014-12-31 Thread haunma
For those who would rather not go through that pain, a vector from P9 pin 2 to TP8 is (0.095, 0.145) inches, where the first component is running across the short dimension of the board, toward the USB connector, and the second component is running along the long dimension of the board, toward

Re: [beagleboard] bbb: u-boot change

2014-12-31 Thread Chris Morgan
On Tue, Dec 30, 2014 at 9:45 PM, Robert Nelson robertcnel...@gmail.com wrote: On the advice of Tom Rini, I'm making 'another' small change to the default u-boot. For awhile now, in u-boot we defaulted to a usb-eth gadget on the slave port. I'm switching that to the UMS or USB Mass Storage

Re: [beagleboard] Add 8GB 8bit nand support along with 4GB on chip eMMC on BBB with Kernel 3.8.13

2014-12-31 Thread Gerald Coley
The eMMC does not use GPMC. It use the MMC function on those pins. Only one device can be supported on those pins. If you want 8G your best bet would be to replace the 4G part with an 8G part. Gerald On Wed, Dec 31, 2014 at 3:11 AM, dhvani...@gmail.com wrote: Hi I am new to BBB. The BBB has

Re: [beagleboard] Beaglebone black not recognized when plugged in (new just out of the box beaglebone black)

2014-12-31 Thread Anirudh Jonnadula
Hi Meino, Good news, I got replacement for my defected board. The new one is working fine. Regards Anirudh On Thu, Dec 18, 2014 at 11:25 PM, meino.cra...@gmx.de wrote: Hi Anirudh, thank you for checking all this ! 8) I quite agree! There is something wrong with your board -- hopefully

Re: [beagleboard] eglibc is no longer developed

2014-12-31 Thread Robert Nelson
On Tue, Dec 30, 2014 at 5:17 PM, hansh...@gmail.com wrote: While building a crosstool-ng toolchain for my Mac, I noticed the following: ldd --version on my BBB gives 'Debian EGLIBC 2.13-38' eglibc.org says that it is no longer supported ct-ng recent issue response seems to state that they're

[beagleboard] Re: seeking recommendation for SD card imaging hardware

2014-12-31 Thread Graham
Eric: I recommend the Startech FCREADMICRO3 http://www.newegg.com/Product/Product.aspx?Item=N82E16820130014 It runs reliably at USB3 speeds for microSD card read and write. Also works fine with USB2 connections. Works fine on both Ubuntu and Windows hosts. --- Graham == On Tuesday, December

[beagleboard] Re: How to wait for rising edge with pruss?

2014-12-31 Thread TJF
The PRUSS don't cause any CPU usage. You can reduce CPU usage by adding a nsleep() call to your while loop. Anyway, the max. speed of pulling the GPIO state (as in your while loop) is limited to approx. 140 kHz. An alternative is to configure a GPIO interrupt 1. Map an interrupt to any

[beagleboard] Re: Autostart web page on login

2014-12-31 Thread André Koorsen
I got it solved. sudo nano /usr/share/xsessions/lightdm-xsession.desktop change the file to look like this: [Desktop Entry] Version=1.0 Name=Openbox Session Exec=openbox-session Icon= Type=Application. Then create a autorun file: sudo nano ~/.config/openbox/autostart and add the following:

Re: [beagleboard] Relay Alternative for a Low powered module on/off

2014-12-31 Thread Philip Polstra
If you are using the regular and pro 2.4GHz XBee you don't need anything close to 1A. The hardware pin sleep is so low power that turning it off makes little sense. Just my two cents from the guy who builds low power hacking drones. On Dec 31, 2014 4:36 AM, Kevin D'Souza

[beagleboard] Re: Autostart web page on login

2014-12-31 Thread Metro
i have done that using as follows: in file vim /etc/init/tty1.conf commented line : exec /sbin/getty 8 34200 . added line : exec /usr/bin/login -f -p ubuntu /dev/tty1 /dev/tty1 21 #auto login for user ubuntu exec startx #start X-Server Finally in file

Re: [beagleboard] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread Robert Nelson
On Wed, Dec 31, 2014 at 4:08 AM, Metro sd.is...@gmail.com wrote: None of the solutions are working.I dont know where i am lacking.Ok let me give you more details about the systems. I am in a process to make a linux kiosk.Wher only one GUI will run , so to directly go to gui i have modified the

[beagleboard] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread Metro
after creating xsession i did xset q Screen Saver: prefer blanking: yesallow exposures: yes Standby: 600Suspend: 600 DPMS is Enabled Monitor is On as per @Mickae1 i tried to create xorg.conf but gives me error : No Device to configure i create by hand , but no use. Please Hep

Re: [beagleboard] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread William Hermans
Can you google ? I'll give you a hint, its a kernel startup option . . . On Wed, Dec 31, 2014 at 8:16 AM, Metro sd.is...@gmail.com wrote: after creating xsession i did xset q Screen Saver: prefer blanking: yesallow exposures: yes Standby: 600Suspend: 600 DPMS is Enabled

[beagleboard] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread Metro
one more thing i want to put in your notice, that although i have made auto login for use 'ubuntu'. exec /usr/bin/login -f -p ubuntu /dev/tty1 /dev/tty1 21 but when it ends up in openbox ,it logs in as root. Why it is so? Please help -- For more options, visit http://beagleboard.org/discuss

[beagleboard] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread Metro
@Wiliam yeah sure .. -- 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] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread Metro
How can i edit my existing uEnv.txt file to put a boot parameter: consolbank=0 i think this will solve the problem. -- 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

Re: [beagleboard] Tutorial: Wifi On The Beaglebone Black With Systemd

2014-12-31 Thread DeKay
Thanks Robert. I think I have some good news with respect to the problem I was having with the TP-Link TL-WN722N locking up. Yesterday morning I set the cpu governor to performance and the connection has been solid ever since (unless you count the five power outages we had at our house

Re: [beagleboard] Tutorial: Wifi On The Beaglebone Black With Systemd

2014-12-31 Thread Robert Nelson
On Wed, Dec 31, 2014 at 10:50 AM, DeKay darrylkac...@gmail.com wrote: Thanks Robert. I think I have some good news with respect to the problem I was having with the TP-Link TL-WN722N locking up. Yesterday morning I set the cpu governor to performance and the connection has been solid ever

Re: [beagleboard] Tutorial: Wifi On The Beaglebone Black With Systemd

2014-12-31 Thread Robert Nelson
On Wed, Dec 31, 2014 at 10:56 AM, Robert Nelson robertcnel...@gmail.com wrote: On Wed, Dec 31, 2014 at 10:50 AM, DeKay darrylkac...@gmail.com wrote: Thanks Robert. I think I have some good news with respect to the problem I was having with the TP-Link TL-WN722N locking up. Yesterday morning

[beagleboard] How to reload PRU firmware 3.14.26 (TI)

2014-12-31 Thread tcmichals
I'm trying to force a reload of the PRU firmware via file system, is there a way to force a reload from the file system? Guess will try and make it a module and do a modprobe FYI, remoteproc has some information on tracing for PRU Getting trace information from remoteproc mount debugfs mkdir

[beagleboard] Re: Gpio Relay

2014-12-31 Thread Carlos Cesario
https://lh4.googleusercontent.com/-JfrylrWkllI/VKRTych6VJI/AGk/Y_cA1qmFm3g/s1600/3vto5v_2N7000_bb.png Hello Guys, After some tests, I get 3.v to 5V using 2N7000 N-Channel. I did a connections draw (I used RPi image, I dont get BBB image in my Fritzing). Does someone can check it for

[beagleboard] Re: Relay Alternative for a Low powered module on/off

2014-12-31 Thread janszymanski12345
Use a P-channel MOSFET (like *IRLML6401* http://www.irf.com/product-info/datasheets/data/irlml6401.pdf) On Wednesday, December 31, 2014 8:36:19 PM UTC+11, Kevin D'Souza wrote: I have an application that needs a XBee and another module to be turned on and off digitally via a BealgeboneBlack.

Re: [beagleboard] bbb: u-boot change

2014-12-31 Thread William Hermans
Robert, so this would work in a pinch to modify files on the system in a pinch to get a working system back after a bad modification ? Pretty nifty either way I think. So what about a possible g_multi, or even just g_serial for observing kernel log on boot ? Maybe even some late u-boot messages,

Re: [beagleboard] Re: screen blank in 10 miute.How to avoid ?

2014-12-31 Thread William Hermans
you're looking for /boot/uEnv.txt I think is the current location on the latest images, and for a line that looks something like . . . *cmdline=quiet init=/lib/systemd/systemd* And then you do . . . *cmdline=quiet init=/lib/systemd/systemd consolbank=0* I *think* parameters are space

[beagleboard] Re: Beagleboard XM IVA2.2 support in kernel 3.11

2014-12-31 Thread Allan Granados
Hi, as Im using yocto to construct the dsplink, there is already a fix for this mismatch, there is a patch made by Enric Balletbo in the meta-ti layer which modify the irq for newer kernels. Index: dsplink_linux_1_65_00_03/dsplink/gpp/src/osal/Linux/2.6.18/isr.c

Re: [beagleboard] bbb: u-boot change

2014-12-31 Thread William Hermans
Oh and right ! How would this effect loading a rootfs over a NFS share ? On Wed, Dec 31, 2014 at 6:48 PM, William Hermans yyrk...@gmail.com wrote: Robert, so this would work in a pinch to modify files on the system in a pinch to get a working system back after a bad modification ? Pretty

Re: [beagleboard] bbb: u-boot change

2014-12-31 Thread Robert Nelson
On Wed, Dec 31, 2014 at 7:48 PM, William Hermans yyrk...@gmail.com wrote: Robert, so this would work in a pinch to modify files on the system in a pinch to get a working system back after a bad modification ? Pretty nifty either way I think. Correct! Just stop u-boot and type: ums 0 mmc 1

Re: [beagleboard] bbb: u-boot change

2014-12-31 Thread Robert Nelson
On Wed, Dec 31, 2014 at 9:32 PM, William Hermans yyrk...@gmail.com wrote: Oh and right ! How would this effect loading a rootfs over a NFS share ? If you were using the usb slave connector as a usb-ethernet gadget... This breaks that, as it's an either or situation in uboot.. But more then