[beagleboard] RE: systemd and autorun/Seth

2017-09-23 Thread Mala Dies
Hello, Can we use Python software in our autorun folder? Seth P.S. If not, what book can I get so I can change this factor? I would like to make this software run on boot and I would like to use cloud9's autorun for our BBGW/BBB. -- For more options, visit http://beagleboard.org/discuss ---

Re: [beagleboard] Running the ADC with two channels at 800 kS/s per channel (1.6 MS/s total)

2017-09-23 Thread TJF
Hi Arend, thanks for sharing your project! Am Samstag, 23. September 2017 10:42:45 UTC+2 schrieb Arend Lammertink: > > If it's a real interrupt, the arm gets like 128 samples (block_size) a > time and thus gets interrupted 128 times less, assuming the IIO driver > uses adc interrupts. > ... >

Re: [beagleboard] Re: Announcing $25 PocketBeagle

2017-09-23 Thread Eric Keller
This happens at Mouser every time there is a new 'bone. It gets sorted eventually. On Sat, Sep 23, 2017 at 1:01 PM, Graham wrote: > And this is just to get it shipped from Ft. Worth, Texas, to a US Citizen > in Austin, Texas. > > Just think what it will be like to get one

Re: [beagleboard] xM Won't Boot, Terminal shows gibberish.

2017-09-23 Thread hafezi . hossein
Dear Jacek, thanks for kind reply. No actually, I have not tried using different SD card. Have you solved similar problem using different SD card?! On Friday, September 22, 2017 at 7:56:48 PM UTC+2, Jacek Radzikowski wrote: > > Did you try using different SD card? > > Jacek. > > > On Fri, Sep

Re: [beagleboard] xM Won't Boot, Terminal shows gibberish.

2017-09-23 Thread hafezi . hossein
The problem was with SD card. Using different SD card silved the problem. Many thanks Jacek. On Friday, September 22, 2017 at 7:56:48 PM UTC+2, Jacek Radzikowski wrote: > > Did you try using different SD card? > > Jacek. > > > On Fri, Sep 22, 2017 at 12:03 PM, > wrote: >

[beagleboard] Reading TPS65217 INT register with interrupt

2017-09-23 Thread Ahmad Fatehi
Hi, I want to use 5V adaptor and battery for powering my beaglebone black, I want to detect when 5V adaptor is missed and the board is supplying from battery, for this I should read the INT and STATUS register of TPS65217 if an interrupt is issued on

[beagleboard] RE: Compiling and Building for MRAA and UPM modules/Seth

2017-09-23 Thread Mala Dies
Hello, Are the MRAA and UPM modules available easy to compile for someone out there in showbiz land? I am asking because I have been trying to get this UPM module jsupm_grovegprs built and compiled. It has not worked so far. Seth P.S. I have the MRAA compiled for my machine and I think it is

Re: [beagleboard] Running the ADC with two channels at 800 kS/s per channel (1.6 MS/s total)

2017-09-23 Thread John Syne
The IIO driver uses DMA to transfer samples from the ADC to the buffer, so the CPU utilization is very low. Using the PRU, the ARM processor has to copy the Buffer from the PRU memory to ARM memory, and this causes the ARM CPU utilization to be higher than using the IIO driver. The IIO driver

Re: [beagleboard] Re: Is it possible to flash bone80 onto Debian 8

2017-09-23 Thread Robert Nelson
So remove connman. And use /etc/network/interfaces like you used to.. Regards, On Sep 23, 2017 12:28 PM, "maxmike" wrote: > > I cannot use the existing image because I have a need to allow users to > dynamically change the ip address of a > machine depending on

Re: [beagleboard] Is it possible to flash bone80 onto Debian 8

2017-09-23 Thread Robert Nelson
Yes, documented here http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#Kernel_Options Regards, On Sep 23, 2017 12:24 PM, "maxmike" wrote: > Just got into infinite trouble - need to use industrial temp boards for > production and I thought I could > flash the bone80

[beagleboard] Re: Is it possible to flash bone80 onto Debian 8

2017-09-23 Thread maxmike
I cannot use the existing image because I have a need to allow users to dynamically change the ip address of a machine depending on installation parameters and this is really difficult to script with connman, unlike the old network manager. Replacing connman has not worked - some critical

Re: [beagleboard] Re: Announcing $25 PocketBeagle

2017-09-23 Thread Robert Nelson
By from digikey. On Sep 23, 2017 12:01 PM, "Graham" wrote: > And this is just to get it shipped from Ft. Worth, Texas, to a US Citizen > in Austin, Texas. > > Just think what it will be like to get one outside of the U.S. > > --- Graham > > == > > > > > > -- > For more

[beagleboard] Is it possible to flash bone80 onto Debian 8

2017-09-23 Thread maxmike
Just got into infinite trouble - need to use industrial temp boards for production and I thought I could flash the bone80 production image onto these machines, but no joy. They use Linux beaglebone 4.4.68-ti-r110 #1 SMP Wed Jun 21 04:31:35 UTC 2017 armv7l GNU/Linux and the flashing process

[beagleboard] Re: Announcing $25 PocketBeagle

2017-09-23 Thread Graham
And this is just to get it shipped from Ft. Worth, Texas, to a US Citizen in Austin, Texas. Just think what it will be like to get one outside of the U.S. --- Graham == -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to

[beagleboard] uEnv.txt missing, nfs-uEnv.txt found instead

2017-09-23 Thread Charles Quarra
Hi, Any idea what happened with the uEnv.txt file and why it seems to be called different? Also, it is safe to add: ##Disable HDMI optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN to the nfs-uEnv.txt file to disable HDMI virtual cape at boot? -- For more options, visit

[beagleboard] Is the BBB with HDMI virtual cape disabled compatible with capes designed for BB green?

2017-09-23 Thread Charles Quarra
I have a grove base cape that is compatible with BB green. The wiki of the page says that it is compatible with BBB without HDMI output. Does that mean that it is only compatible with the no-HDMI version, or that the HDMI pins have to be disabled in order to be compatible? -- For more

Re: [beagleboard] Running the ADC with two channels at 800 kS/s per channel (1.6 MS/s total)

2017-09-23 Thread Arend Lammertink
> On Friday, September 22, 2017 at 11:05:55 AM UTC-5, john3909 wrote: >> >> You do realize that you can achieve the same sample rate with the IIO >> driver in Linux? >> No, I didn't know that. Thanks for mentioning that. On Sat, Sep 23, 2017 at 12:56 AM, Jeff Andich