Questions tagged [beagleboneblack]

BeagleBone Black is a community-supported development platform for developers and hobbyists.

BeagleBone Black is a community-supported development platform for developers and hobbyists. Boot Linux in under 10 seconds and get started on development in less than 5 minutes with just a single USB cable.

Information from : http://beagleboard.org/Products/BeagleBone%20Black

1246 questions
-1
votes
1 answer

Can Arduino Uno code run on a BeagleBone Black using a cross compiler?

I am currently part of a research team that is developing an unmanned submarine for local rescue divers. The goal is to improve and fix the prototype from last year's team. Right now the vehicle uses an Arduino Uno and a BeagleBone Black. The…
JRu
  • 11
-1
votes
1 answer

Beaglebone Black Persistent Internet Over USB - Debian Image 2016-05.13 am335x_evm.sh

My internet over usb used to just work on my BBB but now every time I boot I have to manually add route add default gw 192.168.7.1 echo "nameserver 8.8.8.8" >> /etc/resolv.conf I as following this guide but in /opt/scripts/boot/am335x_evm.sh I can…
paddy
  • 1
  • 1
-1
votes
1 answer

Linux, Using hardware interrupts on I/O to place data into user accessable area via Direct memory access

I am currently working with the BeagleBone Black using Ubuntu and I am trying to find some direction. I have created a c program that listens for SIGIO and runs a read() to get the data on that line. From my research on the internet and looking…
-1
votes
1 answer

assembler set up function dependent on variable

So I am writing an assembly program where I set a variable to one, two or three and then dependent on that variable the right function should be used in the further program. As an example if the value is one the function should look like…
InvAdErZz
  • 43
  • 11
-1
votes
1 answer

debian networking sets wrong ip

I'm currently trying to automate our beaglebone flashing - therefore we have to manually change the ip address. I created a script which basically adds sth. like: # The primary network interface auto eth0 iface eth0 inet static address theip …
Lukasstr
  • 435
  • 2
  • 15
-1
votes
1 answer

Send data from beaglebone black to Host computer

I am trying to send data from BeagleBone to my laptop. My laptop connects with BeagleBone through usb. From my laptop, I can ssh to BeagleBone. In BeagleBone, I will write c code to send data. In my laptop, I will write another code to receive the…
tn0432
  • 23
  • 3
-1
votes
1 answer

beaglebone black flash onboard USR0 led c++, code runs but led doesn't change

I have a BeagleBone Black with Debian installed. I successfully ssh'd into it with MobaXterm and wrote the following code (have written/compiled/run this in both nano and gedit): #include #include #include using…
Indi008
  • 21
  • 4
-1
votes
1 answer

How to switch from char * to const char *[pwm in beaglebone]?

I am working on a quadcopter project with Beaglebone. I need help with using pwm on Beaglebone through a C program. I have attached the following code, #include #include #include struct pwm { char period[100]; …
-1
votes
1 answer

Access structure by offset

I have seen this question asked various times but for some reason when I attempt to use offsetof with the stddef.h header it will not resolve this macro in my eclipse IDE. Instead I am trying to access the structure by calculating it manually. This…
cmacia06
  • 189
  • 1
  • 1
  • 13
-1
votes
2 answers

measuring time between two rising edges in beaglebone

I am reading sensor output as square wave(0-5 volt) via oscilloscope. Now I want to measure frequency of one period with Beaglebone. So I should measure the time between two rising edges. However, I don't have any experience with working Beaglebone.…
user38138
  • 11
  • 3
-1
votes
1 answer

Terminal connection to Beaglebone Black after Booting from Micro SD

I am just getting started with the BBB booting from a micro SD card. I loaded the BeagleBone Black Debian Wheezy 7.0.0 image onto micro SD card as instructed at: http://elinux.org/Beagleboard:Debian_On_BeagleBone_Black Until now I have been…
JimCzek
  • 305
  • 3
  • 16
-1
votes
1 answer

Getting stange error with strings

I'm writing a program in C for my beaglebone black to manipulate the gpio pins. This is a very crude program but its just a "beta" if you will. Just to get it up and running. My problem is that I have two character arrays. One holding a command to…
cmacia06
  • 189
  • 1
  • 1
  • 13
-1
votes
1 answer

Start OpenSSH sshd automatically on the BeagleBone Black

Does anybody know how to start sshd automatically on the BeagleBone Black ? I've replaced dropbear with OpenSSH. The standard systemctl enable sshd doesn't work, but strangely systemctl start sshd does. I'm quite new to systems with systemd…
Alex Marshall
  • 9,406
  • 11
  • 65
  • 109
-2
votes
3 answers

Yocto beaglebone wired ssh

I have a question regarding wired ssh configuration on beaglebone using Yocto. I have an image ready with: packagegroup-core-ssh-openssh openssh-sftp-server (and bunch of others but i dont this they are relevant in this situation). Everything boots…
jkos
  • 35
  • 6
-2
votes
2 answers

Segmentation fault SIGSEGV error on BeagleBone

I have still problem with a Segmentation fault in the C code. When I call the function current_live_read(ainpath); for the 8th time I'm getting the error: No source available for "_int_malloc() at 0x25be2" The main function looks like this: void…
Pukacza
  • 7
  • 7