[beagleboard] Re: Static IP on eth0

2016-03-19 Thread rudydeloreantide
Thanks Brian!! This worked for me. Was tearing my hair out going from Wheezy to Jessie -- 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

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread John Syne
root@beaglebone:/sys/bus/iio/devices/iio:device0# tree . ├── buffer │ ├── enable │ ├── length │ └── watermark ├── dev ├── in_voltage0_raw ├── in_voltage1_raw ├── in_voltage2_raw ├── in_voltage3_raw ├── in_voltage4_raw ├── in_voltage5_raw ├── in_voltage6_raw ├── name ├── of_node ->

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread Audrey
Hm. Sorry, but unfortunately I'm still quite a bit lost. What should I be doing to dev/iio:device0 (open?) in order to do the following: echo 1 > in_voltage0_en echo 1 > buffer/enable I'm assuming that I should be able to see in_voltage0_en and buffer in the folder

Re: [beagleboard] u-boot can't find uEnv.txt

2016-03-19 Thread David Hinkes
Thanks for the response, I appreciate it. > > Questions: > > (1) What are the requirements for the location of uEnv.txt? > > Look at the flow: > > >

[beagleboard] Beaglebone black play audio with TCP command

2016-03-19 Thread enkavak
Hello I would like to write a c code which will play audio like wav or mp3 from USB audio adapter when it receives a TCP command from Ethernet interface. To do this I will use a cheap USB Audio Adapter and Beagle Bone Black. Can anybody help me to write the code from scratch ? I

Re: [beagleboard] Android GSM module/shield question

2016-03-19 Thread comseong
I am also looking for the same solution as you are finding. Did you find the solution? Thanks. 2015년 4월 20일 월요일 오후 6시 21분 51초 UTC+5, andri...@gmail.com 님의 말: > > Gerald, > > I did look there and saw the GPS/GPRS cape. But I still do not know of > this will be a seamless integration with the

[beagleboard] Question on Cortex A ARMS...

2016-03-19 Thread pwmvsi
I have an extremely simple question: My company uses ARM Cortex M micro-controllers. I would like to know if if the Cortex A can have their operating system put aside and the unit be used strictly as a micro-controller. The 1 Ghz capability is very fast with plenty of memory, it would be

Re: [beagleboard] ARM Cortex A as a strict micro controller

2016-03-19 Thread William Hermans
Also, perhaps obvious, perhaps not. The AM335X is a very complex processor. Writing bare metal code the these processors would not be a trivial task. But anyone who has written code for just about any micro controller knows that yes, perhaps some MCUs are semi complex, but usually they're very

[beagleboard] Issue with BeagleBone Black Extracting eMMC contents

2016-03-19 Thread kevinlang . ca
Hi, I am trying to image all contents of onboard eMMC to a uSD by running the latest scripts frpm Robert, https://github.com/RobertCNelson/boot-scripts/blob/master/tools/eMMC/beaglebone-black-make-microSD-flasher-from-eMMC.sh It is good that I can use uSD to flash new Beaglebone board, but

[beagleboard] How to initialize DMA channels of SPI master

2016-03-19 Thread 'ilikepepsi' via BeagleBoard
Hi, I'm developing a kernel module that is supposed to communicate with a TI ADS1274 ADC via SPI. So far I have a working kernel module that doesn't use DMA for the SPI communication. Therefore the CPU get's a hell of a load and I need to fix that. The way to do it presumably is using DMA but

Re: [beagleboard] u-boot can't find uEnv.txt

2016-03-19 Thread William Hermans
> > *It also seems that u-boot will try to took for uEnv.txt in several > partitions, and seeing some "** Unable to read file uEnv.txt **" messages > are ok. Is this correct?* > No. If you have an sdcard inserted at boot it will always load the first and second stage boot loaders from eMMC, but

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread John Syne
It is a driver, so you can open, poll and read from /dev/iio:device0 For a quick test, do the following: After you enable the various scan_channels, start the buffer and then do the following: dd if=/dev/iio:device0 of=~/test.txt Press ctrl-C to stop capture. Use hexdump to view the file.

[beagleboard] Terminal Blocks for BeagleBone IO

2016-03-19 Thread msaporito
Hey guys, I'm currently designing an automation control system for my aeroponic greenhouse and would like to use the BeagleBone Black as the brain. I would like all wiring to the BBB to be done using terminal blocks. The Arduino Mega has a shield that breaks out all GPIO pins to terminal

Re: [beagleboard] u-boot can't find uEnv.txt

2016-03-19 Thread William Hermans
Oh, and if you're using the eMMC only, you need to have uEnv,txt located in the first partition at root of the "drive". So in laymen terms . . . /uEnv.txt - Not /boot/uEnv.txt or anywhere else *unless* you modify uboots code before compiling. On Fri, Mar 18, 2016 at 2:08 AM, William Hermans

Re: [beagleboard] Terminal Block Solutions for BeagleBone Black IO?

2016-03-19 Thread Matt Saporito
> > If you can't find one that's commercial, then you design your own if you can do hardware. I can't do hardware unfortunately... I reached out to the element14 design service team to see what they can do. Do you happen to know of anyone else who can do custom board design? You need to

[beagleboard] Beaglebone black play audio with TCP command

2016-03-19 Thread enkavak
Hello I would like to write a c code which will play audio like wav or mp3 from USB audio adapter when it receives a TCP command from Ethernet interface. To do this I will use a cheap USB Audio Adapter and Beagle Bone Black. Can anybody help me to write the code from scratch ? I

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread John Syne
The buffer is available here: /dev/iio:device0 Because the driver uses interrupts, you won’t get the speed you want. The driver has to be updated to use DMA if you want to use full speed. Reading from the buffer will reduce your CPU load compared to using LDR_PATH because this interface

Re: [beagleboard] Debugging with beaglebone black

2016-03-19 Thread John Syne
CCSV4 was partially aware, but CCSV5 and CCSV6 are not. http://processors.wiki.ti.com/index.php/Linux_Aware_Debug_(CCSv4.x) Regards, John > On Mar 18, 2016, at 2:29 PM, Mark Lazarewicz wrote: > >

Re: [beagleboard] Cannot Use BBB After Updating

2016-03-19 Thread William Hermans
Wally, I'll give you a hint. In most cases g_ether does not come up, because it was intended that way. But if you really *really* need it to work, you should learn how to troubleshoot driver modules, and a thing or two about USB gadget drivers. I've learned all this myself simply by googling, from

Re: [beagleboard] Terminal Block Solutions for BeagleBone Black IO?

2016-03-19 Thread Harvey White
On Sat, 19 Mar 2016 12:24:12 -0700 (PDT), you wrote: >Hey guys, > >I'm currently designing an automation control system for my aeroponic >greenhouse and would like to use the BeagleBone Black as the brain. I >would like all wiring to the BBB to be done using terminal blocks. The >Arduino

Re: [beagleboard] Could not flush host TX2 fifo

2016-03-19 Thread 'Yegor Yefremov' via BeagleBoard
Hi Stephen, there a multiple HackRF compatible devices, so I just wanted to know, what particular device you were using. Yegor On Thursday, March 17, 2016 at 4:11:42 PM UTC+1, Stephen Pape wrote: > > Hi Yegor, > > I'm not sure what you're asking. The post you're replying to is > literally me

Re: [beagleboard] Cannot Use BBB After Updating

2016-03-19 Thread William Hermans
> > *Please retest with the latest:* > > * > http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#Debian_Image_Testing_Snapshots > * > > * Which use the "4.1.18-ti-r52" kernel, some of the usb issues seem to* > *

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread John Syne
Yeah, that is what I thought. IIO on the 3.8 kernel didn’t have a lot of features and this is why you are having difficulty using it. I would recommend upgrading to the 4.1 kernel or even the 4.4 kernel. I personally use the 4.1 kernel, but I back ported IIO from the IIO-next kernel so that I

Re: [beagleboard] Debugging with beaglebone black

2016-03-19 Thread John Syne
Problem with GDB, is you cannot start the debugger until after the kernel module is loaded, which means no debugging of init or probe sections. The reason is GDB doesn’t know where in memory the kernel module is loaded until after it is loaded. This is why you need a kernel aware debugger like

[beagleboard] Terminal Block Solutions for BeagleBone Black IO?

2016-03-19 Thread Matt Saporito
Hey guys, I'm currently designing an automation control system for my aeroponic greenhouse and would like to use the BeagleBone Black as the brain. I would like all wiring to the BBB to be done using terminal blocks. The Arduino Mega has a shield that breaks out all GPIO pins to terminal

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread John Syne
> On Mar 18, 2016, at 1:06 PM, Audrey wrote: > > Hm. > > Sorry, but unfortunately I'm still quite a bit lost. What should I be doing > to dev/iio:device0 (open?) in order to do the following: > echo 1 > in_voltage0_en >From memory, echo 1 >

Re: [beagleboard] PWM On Beaglebone black with Jessie

2016-03-19 Thread William Hermans
Seems like you've not loaded the proper device tree file ( "cape" ) for the correct PWM - To start off with. On Thu, Mar 17, 2016 at 7:47 PM, Walter Schilling wrote: > OK, so here is where I am at: > #1 I wrote the following script, and, well it worked great... Until I had

Re: [beagleboard] Beaglebone Database Suggestions

2016-03-19 Thread Robert Nelson
On Wed, Mar 16, 2016 at 7:08 PM, Ray Madigan wrote: > That was my original idea, I just can't figure out how to implement it. I > formatted it with fdisk as a linux partition, any ext was not available, and > when I boot /etc/mtab treats it as vFat and postgresql won't

[beagleboard] Debugging with beaglebone black

2016-03-19 Thread cmajor . merchant
I have a question about the beaglebone black. How am suppose to debug with it? I really would prefer not to have to solder a JTAG header. Also the JTAG header would be under the board which is really inconvenient. The case that came with my board also has no room for the JTAG header so it would

Re: [beagleboard] Beaglebone Database Suggestions

2016-03-19 Thread William Hermans
You can have a database all in memory. . . mounted over a network via NFS, or sshfs, You can use an external USB hard drive / flash stick, or you can use the sdcard interface as Robert mentions above. Anyway, there are "tons" of options, and you simply gave up too easy. As for Software stacks .

Re: [beagleboard] ARM Cortex A as a strict micro controller

2016-03-19 Thread 'Mark Lazarewicz' via BeagleBoard
Yes it can. running bare bone is faster than linux and can achieve reponse times requirements dictated by a hard real time system.  You use starter ware and can have the system running very quickly.  You won't have every  driver   but will have the basic drivers required for most simple uC

Re: [beagleboard] Debugging with beaglebone black

2016-03-19 Thread John Syne
Oh, and one more thing, CCSV4 won’t work with the V4 kernels because of data structure changes in the kernel. Regards, John > On Mar 18, 2016, at 2:51 PM, John Syne wrote: > > CCSV4 was partially aware, but CCSV5 and CCSV6 are not. > >

Re: [beagleboard] Could not flush host TX2 fifo

2016-03-19 Thread 'Yegor Yefremov' via BeagleBoard
Hi Stephen, have you used this device? https://greatscottgadgets.com/hackrf/ I'm experiencing this issue with some GSM modems. See my post at TI forum (http://e2e.ti.com/support/arm/sitara_arm/f/791/p/385033/1801121#1801121) Yegor On Sunday, September 27, 2015 at 11:34:54 PM UTC+2, Stephen

Re: [beagleboard] How to initialize DMA channels of SPI master

2016-03-19 Thread John Syne
Look at how this is done in drivers/mmc/host/mmc_spi.c Regards, John > On Mar 18, 2016, at 6:53 AM, 'ilikepepsi' via BeagleBoard > wrote: > > Hi, > > I'm developing a kernel module that is supposed to communicate with a TI > ADS1274 ADC via SPI. So far I

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread Audrey
Hi William, I did read that article you sent me. I was unable to follow the Driver Configuration bit, but as far as the continuous mode is concerned, after careful re-reading of the article, I think I understand that you are trying to tell me that I should be in the /dev/iio:device0 directory

Re: [beagleboard] Debugging with beaglebone black

2016-03-19 Thread 'Mark Lazarewicz' via BeagleBoard
John I remember using Lauterbach to do this isn't CCS  kernel aware?  Sent from Yahoo Mail on Android On Fri, Mar 18, 2016 at 1:24 PM, John Syne wrote: Problem with GDB, is you cannot start the debugger until after the kernel module is loaded, which means no debugging

[beagleboard] Re: libpruio adc pruio_config help

2016-03-19 Thread TJF
Hi! This "sample rate too big" is a too rigid error message (a bug). The post you quoted explains how to fix it. Just adapt the *pruio_adc.bas* code and recompile the library. Find further information in this thread. BR

Re: [beagleboard] Could not flush host TX2 fifo

2016-03-19 Thread Stephen P
Hi Yegor, I'm not sure what you're asking. The post you're replying to is literally me talking about trying to get the HackRF working, so yes I've used it. -Stephen Hi Stephen, have you used this device? https://greatscottgadgets.com/hackrf/ I'm experiencing this issue with some GSM modems.

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread William Hermans
Audrey, Please read the link I gave you a couple weeks ago . . . http://processors.wiki.ti.com/index.php/AM335x_ADC_Driver's_Guide#Continuous_Mode Everything you need to know to use the ADC is explained on this page. But from your last post, and the paths you've shown us. You're in the wrong

[beagleboard] Java GPIO access problem

2016-03-19 Thread gusevbess
Hello. Please tell me, when you use the code get the error. What could be the reason? The file exists:/sys/class/gpio/gpio60/value public static boolean value(int pin, int val){ OutputStream os = null; try { os = new FileOutputStream("/sys/class/gpio/gpio"+pin+"/value"); String s =

[beagleboard] Re: libpruio adc pruio_config help

2016-03-19 Thread antpersan2
Hi! Forgive me in advance for my english skills. I'm in a project in which i need to read beagle adc with timming accuracy and i don't know how to do it. I've tried the rb_file.c mentioned before but even replacing that code i'm still getting the same error, sample rate too big. Do I have to

[beagleboard] Forgot my Debian Password

2016-03-19 Thread m . zaid54323
I changed my debian password using "passwd" command now I forgot it! Anyway I can remove or recover it? -- 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

[beagleboard] Install Custom Kernel

2016-03-19 Thread erat123
Greetings, I cross-compiled a kernel for my BeagleBone Black and I'd like to update the BBB to that kernel, but I'm not sure how to do that. This has been my main resource: http://wiki.beyondlogic.org/index.php/BeagleBoneBlack_Building_Kernel Using that link, I was able to load the kernel into

[beagleboard] Beaglebone Database Suggestions

2016-03-19 Thread Ray Madigan
I have an app I want to write for home use that I need database access for. The dataset isn't extremely large but will eventually overflow the file system on beaglebone. I can't think of a way to add additional storage that will work with a database like postgresql. I have read many online

Re: [beagleboard] ARM Cortex A as a strict micro controller

2016-03-19 Thread William Hermans
> > *I am wondering if the Cortex A chip on the BBBlack can be used as a > strict micro controller, i.e. without an operating system?* It can, but you have to understand that the AM335x processor is a general purpose applications processor. So when compared directly with specific purpose type

Re: [beagleboard] BBB-Development Advice/Recommendations

2016-03-19 Thread Karl Karpfen
...and it differs dependent on your application. When your BBB is running with Linux, you can do development and debugging using the usual tools (except for the PRU-code, which is more tricky). But when you want to do bare-metal programming, tools are quite different (CCS as already mentioned)

Re: [beagleboard] Beaglebone black play audio with TCP command

2016-03-19 Thread Przemek Klosowski
On Thu, Mar 17, 2016 at 9:57 AM, wrote: > I would like to write a c code which will play audio like wav or > mp3 from USB audio adapter when it receives a TCP command from Ethernet > interface. To do this I will use a cheap USB Audio Adapter and Beagle Bone > Black.

[beagleboard] Beaglebone Black IDE support in windows

2016-03-19 Thread vmh07hurgat
hello, Please let me know the list of IDE in windows for the development on BBB.I am installing Code Composer Studio in windows,Will is Works for Development ? I am new to linux,so give me some tips to work on linux for spi interfacing. Actually i want to interface zynq 7000 xilinx FPGA with

[beagleboard] am335x: no multicast reception over VLAN

2016-03-19 Thread 'Yegor Yefremov' via BeagleBoard
I have an am335x based board using CPSW in Dual EMAC mode. Without VLAN IDs I can receive and send multicast packets [1] . When I create VLAN ID: ip link add link eth1 name eth1.100 type vlan id 100 ip addr add 192.168.100.2/24 brd

Re: [beagleboard] RevB Expansion Headers

2016-03-19 Thread Gerald Coley
That means the expansion headers have not changed. No connectors changed. Gerald On Wed, Mar 16, 2016 at 2:59 AM, wrote: > I've read in another post that the changes between the RevA and RevB are > mostly layout related (HDMI and Power). > Does this mean that the expansion

[beagleboard] Re: bbb Internal ADC configuration settings?

2016-03-19 Thread Audrey
Hi everyone, First of all, thank you everyone for trying to help me. I appreciate everyone's input. I took everyone's advice, and have moved away from bash to C++. It's clocking at about 2 milliseconds, but I would really like it to go down into the microsecond range: > /** Simple LDR

Re: [beagleboard] Cannot Use BBB After Updating

2016-03-19 Thread Wally Bkg
On Thursday, March 17, 2016 at 5:12:59 PM UTC-5, William Hermans wrote: > *Please retest with the latest:* >> >> * >> http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#Debian_Image_Testing_Snapshots >> >> *

Re: [beagleboard] How to set GPIO direction in beaglebone black in android using c code.....????

2016-03-19 Thread Gary Thomas
On 03/17/2016 05:44 AM, Sumit Bhut wrote: On Wednesday, March 16, 2016 at 10:56:42 AM UTC+5:30, Gary Thomas wrote: On 03/16/2016 06:18 AM, Sumit Bhut wrote: > How to set GPIO direction in beaglebone black in android using c code. > > Hi,Friends,... > >

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread Audrey
It says: root@beaglebone:/# echo 1 > /sys/bus/iio/devices/iio:device0/scan_element/in_voltage0_en -bash: /sys/bus/iio/devices/iio:device0/scan_element/in_voltage0_en: No such file or directory and I can't find scan_elements in sys/bus/iio/devices/iio:device0

Re: [beagleboard] Beaglebone Database Suggestions

2016-03-19 Thread Robert Nelson
On Mar 16, 2016 6:51 PM, "Ray Madigan" wrote: > > I have an app I want to write for home use that I need database access for. The dataset isn't extremely large but will eventually overflow the file system on beaglebone. I can't think of a way to add additional storage

Re: [beagleboard] PWM On Beaglebone black with Jessie

2016-03-19 Thread William Hermans
You should always write down step by step what you're doing so you have no problems reproducing it in the future . . . On Fri, Mar 18, 2016 at 1:46 AM, William Hermans wrote: > Seems like you've not loaded the proper device tree file ( "cape" ) for > the correct PWM - To

Re: [beagleboard] Debugging with beaglebone black

2016-03-19 Thread John Syne
To debug kernel modules with JTAG, you have to have a debugger which is kernel aware like Lauterbach. If you don’t want to use JTAG, then use printk or dev-dbg, dev-err, etc. You can also use ftrace, which requires you to build your own kernel and add support for the various ftrace features.

[beagleboard] u-boot can't find uEnv.txt

2016-03-19 Thread David Hinkes
Hi, I'm attempting to boot a vanilla u-boot and linux kernel from the SD card. I was able to make the cross-compiler and build from the u-boot and linux sources. I installed u-boot to the SD card via creating a FAT partition and dumping MLO and u-boot.img directly into the filesystem. I

Re: [beagleboard] Cannot Use BBB After Updating

2016-03-19 Thread Robert Nelson
On Thu, Mar 17, 2016 at 4:55 PM, wrote: > Hello, > > I have recently bought two BeagleBone Black, one from Element14 and one from > Adafruit (not the Element14 one). Both are rev C. > > When I received my first BeagleBone Black, which was the Element14, I > plugged it

[beagleboard] How to connect RC transmitter receiver to the Beaglebone Black?

2016-03-19 Thread Ashwin Vasudevan
Hello, I want to connect one of these to the Beaglebone. I searched around the internet, but could not find any resources. Any ideas? -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard"

Re: [beagleboard] u-boot can't find uEnv.txt

2016-03-19 Thread Robert Nelson
On Thu, Mar 17, 2016 at 11:18 PM, David Hinkes wrote: > Hi, > > I'm attempting to boot a vanilla u-boot and linux kernel from the SD card. > I was able to make the cross-compiler and build from the u-boot and linux > sources. I installed u-boot to the SD card via creating

Re: [beagleboard] apt-show-versions

2016-03-19 Thread hoofdeigenwijs
2 years later I id run into the same error. The solution offered still works ! Thanks, Ben On Thursday, January 14, 2016 at 1:38:47 AM UTC+1, yama...@gmail.com wrote: > > I had the same problem. Thank you Robert !! :) > > For reference I have used Beagle Bone Black rev. B > with

[beagleboard] Re: How to install Quectel UC20 module drivers in debian ?

2016-03-19 Thread 'Yegor Yefremov' via BeagleBoard
Hi Alberto, On Wednesday, January 13, 2016 at 9:08:16 PM UTC+1, Alberto Picasso wrote: > > I am trying to install Quecte UC20 usb driviers on beaglebone debian > operating system but I could not do it. I am a begginer in Linux operating > systems and I need help. the linux driver was added with

[beagleboard] Re: RevB Expansion Headers

2016-03-19 Thread wortlepj
That's great. Thanks for the info Pete. On Wednesday, March 16, 2016 at 1:15:25 PM UTC, wort...@gmail.com wrote: > > I've read in another post that the changes between the RevA and RevB are > mostly layout related (HDMI and Power). > Does this mean that the expansion headers haven't changed or

[beagleboard] GSoC Project: a realtime audio effects Box

2016-03-19 Thread hpfmn1337 via BeagleBoard
Hello everyone, I like to participate in GSoC 2016 and have the idea of creating a nice audio tool platform on the beagle board. So really would like from you what you think of this idea and if it would be helpful for anybody else out there? Here is my abstract: > In my project I’m trying to

Re: [beagleboard] Issue with BeagleBone Black Extracting eMMC contents

2016-03-19 Thread Robert Nelson
On Fri, Mar 18, 2016 at 2:22 PM, wrote: > Hi, > > I am trying to image all contents of onboard eMMC to a uSD by running the > latest scripts frpm Robert, >

Re: [beagleboard] bbb Internal ADC configuration settings?

2016-03-19 Thread Audrey
It says: root@beaglebone:/dev# cd iio:device0 -bash: cd: iio:device0: Not a directory root@beaglebone:/dev# cat iio:device0 cat: iio:device0: Invalid argument On Friday, March 18, 2016 at 3:25:13 PM UTC-4, john3909 wrote: > > The buffer is available here: > > /dev/iio:device0 > > Because the

[beagleboard] GSoC 2016 Project: Beagle board as a audio effects box

2016-03-19 Thread 'Johannes Wegener' via BeagleBoard
I would like to build a nice audio toolbox out of the beagle board as a Google Summer of Code project and would like to get some feedback from you guys! How would like to have something like this? What would you do with it? Here is my abstract In my project I’m trying to build the foundation

Re: [beagleboard] How to set GPIO direction in beaglebone black in android using c code.....????

2016-03-19 Thread Sumit Bhut
On Wednesday, March 16, 2016 at 10:56:42 AM UTC+5:30, Gary Thomas wrote: > > On 03/16/2016 06:18 AM, Sumit Bhut wrote: > > How to set GPIO direction in beaglebone black in android using c > code. > > > > Hi,Friends,... > > > > I'm Trying this code for set GPIO Direction For BBB

[beagleboard] Help me.. BUG: soft lockup - CPU#0 stuck for 22s!

2016-03-19 Thread kim namic
Hi, Everyone.. I'm study IEC 61850. and devloepment 61850 Gateway. My application(gw61850) are running about 10 minutes, so, Freeze my BBB and screen error message. I'm 2 BBB (Debian 7.5 and Debian 8.3)testing my application. but same error orrcur. Please help me... My error mesages

[beagleboard] ARM Cortex A as a strict micro controller

2016-03-19 Thread Rick White
I am wondering if the Cortex A chip on the BBBlack can be used as a strict micro controller, i.e. without an operating system? Rick W -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group.

[beagleboard] Re: 4D 4.3" LCD not working in Debian 8.3?

2016-03-19 Thread bacher.ronny via BeagleBoard
At time I have the same problem with a 4DCAPE-70T. I have checked the answer of RobertCNelson without success... Do you have found a solution? Thx Am Donnerstag, 18. Februar 2016 18:02:02 UTC+1 schrieb er...@errolsworld.com: > > Hi all, > > I have a Beaglebone Black with an 4D 4.3" LCD cape

Re: [beagleboard] Debugging with beaglebone black

2016-03-19 Thread William Hermans
That is, kgdb . . . On Fri, Mar 18, 2016 at 1:50 AM, William Hermans wrote: > https://www.google.com/search?q=how+to+debug+linux+kernel+modules > > Just like you would on any platform. > > On Thu, Mar 17, 2016 at 8:46 PM, John Syne wrote: > >> To debug

[beagleboard] How to interface dht11 sensor with BBB....

2016-03-19 Thread Sumit Bhut
How to interface dht11 sensor with BBB -- 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