Posts related to the Beaglebone microprocessor.

UDP Unicast and Multicast Streaming Video using the Beaglebone Black

Introduction
In a previous post, I described how you could set up the Beaglebone Black to capture video and process video using OpenCV with the Logitech C920 camera. In this post I am going to look at how you can begin streaming data using the camera and code that I had adapted previously. The previous post is here and the final instructional […]

By |July 12th, 2013|Beaglebone, Blog|32 Comments

Streaming Video using RTP on the Beaglebone Black

Introduction
In a previous post, I described how you could set up the Beaglebone Black to capture video and process video using OpenCV with the Logitech C920 camera. In this post I am going to look at how you can begin streaming data using the camera and code that I had adapted previously. The previous post is here and the final instructional page is […]

By |July 12th, 2013|Beaglebone, Blog|41 Comments

GPIOs on the Beaglebone Black using the Device Tree Overlays

This post provides supplementary information to the video that I have just posted on using GPIOs with the Beaglebone Black.
The Video
In this video I am going to continue my series on the Beaglebone by demonstrating how to use its GPIOs for both input and output applications. In this video I will wire simple input and output circuits that are attached to […]

By |June 12th, 2013|Beaglebone, Blog|102 Comments

Git and Curl SSL Certificates Configuration on Beaglebone Black

I have noticed that on the Beaglbone Black that I am constantly having problems with git and curl when it comes to https sites. This post addresses the configuration problems and shows you different ways to solve the problem that may suit your particular needs.
Fixing the SSL problems with Git
Out of the box, if you try to commit to a […]

By |June 5th, 2013|Beaglebone, Blog|21 Comments

Building git from source for the Beaglebone Black

I use github.com for all of my source code source version control. I noticed that in the past few days git push had stopped working for me on the Beaglebone Black (BBB) for one of my repositories. I decided to build git from source to see if it was a version issue. The version of git on the BBB is version 1.7.7 […]

By |June 4th, 2013|Beaglebone, Blog|4 Comments

Setting a Network Proxy on the Beaglebone Black

I have just posted on how to configure your network to use a static IP address at this post: Set the IP address statically on the Beaglebone Black. One issue that is related is the case where you now wish to use a proxy with your device. This is common within universities and other organisations and the limits on what […]

By |May 28th, 2013|Beaglebone, Blog|4 Comments

Set Static IP Address on the Beaglebone Black

Introduction

The BBB is configured by default to use the dynamic host configuration protocol (DHCP) for the allocation of its wired and wireless IP address. Network routers typically run a DHCP server that allocates a pool of addresses to devices attached to the network. While DHCP works well for most devices on a local network, it can cause difficulties if you […]

By |May 27th, 2013|Beaglebone, Blog|76 Comments

Writing a new Image to the Beaglebone Black

 Although the BBB is supplied with a Linux distribution already on its eMMC, one of the first steps you may carry out is updating your BBB to have the latest Linux distribution.
The beagleboard.org website has very clear instructions on writing a new system image to the BBB, so this section only details observations and additional steps that may be […]

By |May 26th, 2013|Beaglebone, Blog|116 Comments

Beaglebone Images, Video and OpenCV

Please note: this was an early post – the content of this post was turned into a video that is available on this page: Beaglebone: Video Capture and Image Processing  on Embedded Linux using OpenCV
Getting started

Start by plugging in the camera with the power down and then booting, praying that the device is picked up. lsusb is a utility for displaying […]

By |May 23rd, 2013|Beaglebone, Blog|47 Comments

Changing the Beaglebone CPU Frequency

Check the CPU Frequency
 The BBB has various governors that can be used to profile the performance/power usage ratio. For example, if you were to build a battery powered BBB application that required low processing requirements, you could reduce the clock frequency to conserve power. You can find out information about the current state of the BBB by typing cpufreq-info:

You can see […]

By |May 23rd, 2013|Beaglebone, Blog|18 Comments