EBC Exercise 10 Flashing an LED

From eLinux.org
Revision as of 07:17, 28 May 2012 by Yoder (talk | contribs) (Added Header/Footer)
Jump to: navigation, search

thumb‎ Embedded Linux Class by Mark A. Yoder


The "Hello World" program is the traditional first program for many classes. Flashing an LED is the embedded equivalent. Here we will explore a few ways to flash and LED on the Beagle and explore General Purpose I/O (gpio) along the way. This will call be done from the command line of the Beagle, so there is no need for the host computer.

gpio via the Shell Command Line and sysfs

The easiest way to do general purpose I/O (gpio) on the Beagle is through a terminal window and a shell prompt. In Linux most everything is treated as a file. Even things that aren't files. In our class we'll use a virtual file system called sysfs. sysfs exposes the drivers for the hardware so you get easily use them.

Try this, open a terminal by selecting Applications:Accessories:Terminal

Terminal.png

Then type:

beagle$ cd /sys
beagle$ ls -F
block/  bus/  class/  dev/  devices/  firmware/  fs/  kernel/  module/  power/

Here we see several directories that represent hardware we can control. Explore a bit and see what you find.

Now try:

beagle$ cd /sys/class
beagle$ ls -F
bccat/      hwmon/        mtd/             scsi_disk/     usb_device/
bdi/        i2c-adapter/  net/             scsi_generic/  usbmon/
block/      i2c-dev/      omap-previewer/  scsi_host/     vc/
bluetooth/  input/        omap-resizer/    sound/         video4linux/
bsg/        leds/         pvr/             spi_master/    vtconsole/
display/    mdio_bus/     regulator/       spidev/
firmware/   mem/          rfkill/          thermal/
gpio/       misc/         rtc/             tty/
graphics/   mmc_host/     scsi_device/     ubi/

Explore some. What do you find? In graphics you will see the 3 frame buffers supported by the processor. In sound you'll see the alsa sound devices.

Reading the Keyboard and Mouse

Try this:

beagle$ cd /sys/class/input
beagle$ ls -F
beagle$ evtest event2
Hit ctrl-C to stop

Now move your mouse around, or try you keyboard. My mouse is plugged into the bottom left USB port and event2 responds to it. Where do your keyboard and mouse appear?

Flashing the LEDs

The Beagle has a user0 and user1 LED that you can control. Try this:

beagle$ cd /sys/class/leds
beagle$ ls -F
beaglebeagleboard::pmu_stat@  beagleboard::usr0@  beagleboard::usr1@

Here you see the directories for controlling each of the usr LEDs. By default, usr0 flashes a heartbeat pattern and usr1 flashes when the micro SD card is accessed. Let's control usr0.

beagle$ cd beagleboard\:\:usr0
beagle$ ls -F
brightness  device@  max_brightness  power/  subsystem@  trigger  uevent

See what's in brightness, max_brightness and trigger by using the cat command. For example:

beagle$ cat trigger
none nand-disk mmc0 [heartbeat]

This shows trigger can have 4 values. The present value is heartbeat. Check the LED, is the beating? You can stop the heartbeat via:

beagle$ echo none > trigger
beagle$ cat trigger
[none] nand-disk mmc0 heartbeat 

Did it stop beating? You can now turn it on and off with:

beagle$ echo 1 > brightness
beagle$ echo 0 > brightness

Is it responding correctly?

Reading the User Button

The Beagle has a couple of push buttons. One reboots the whole board. Use with care. One is for you to use, it's to the right of the Reset button, between the two stacks of USB ports. BeagleUserButton.png

It's attached to gpio port 4. You can read it via:

beagle$ cd /sys/class/gpio
beagle$ ls -F
export    gpio133@  gpio137@  gpio141@      gpiochip160@  gpiochip96@
gpio130@  gpio134@  gpio138@  gpio162@      gpiochip192@  unexport
gpio131@  gpio135@  gpio139@  gpiochip0@    gpiochip32@
gpio132@  gpio136@  gpio140@  gpiochip128@  gpiochip64@

Notice there is no gpio4. Here's how you can create it, set it to an input port and read its value:

beagle$ echo 4 > export
beagle$ ls
beagle$ cd gpio4
beagle$ echo in > direction
beagle$ cat value

Try holding down the switch and doing cat value again. Does the value change? There's a shell script called readgpio that repeatedly reads the switch.

beagle$ readgpio 4

Try pushing the switch. Does it work? Hit ctrl-C to stop. Look at readgpio. How does it work?

beagle$ which readgpio
beagle$ cp /usr/bin/readgpio ~
beagle$ gedit ~/readgpio

Reading a gpio pin with an Oscilloscope

You can easily access many of the gpio pins via the Main Expansion Header. Page 107 of the BeagleBoard-xM System Reference Manual has this figure. MainHeader.png

Unfortunately the gpio pins don't appear here. It turns out the processor has more internal I/O lines than it has physical pins. Each physical pin can can be connected to up to 8 internal lines. BeagleBoardPinMux does a nice job of explaining it all. The big clue is here BeagleBoardPinMux#Beagle which references Table 22 on page 108 of the -xM System Reference Manual.

ExpansionSignals.png

Note that gpio130 appears on pin 21 of the Expansion Header. Also note that pins 27 and 28 are ground. Attach your scope probe to these. Now, let's put a signal on the pin.

beagle$ cd /sys/class/gpio
beagle$ ls -F
export      gpiochip128@  gpiochip192@  gpiochip64@  unexport
gpiochip0@  gpiochip160@  gpiochip32@   gpiochip96@

Notice there is no folder for gpio130. Create it with:

beagle$ echo 130 > export
beagle$ ls -F
export    gpiochip0@    gpiochip160@  gpiochip32@  gpiochip96@
gpio130@  gpiochip128@  gpiochip192@  gpiochip64@  unexport

Go to your home directory on your Beagle and get togglepgio.

beagle$ cd
beagle$ wget http://www.rose-hulman.edu/~yoder/Beagle/exercises/togglegpio
beagle$ chmod +x togglegpio
beagle$ gedit togglegpio

Can you tell what the program is doing? Try running it:

beagle$ togglegpio 130 0.05

Note that if you are the root user (which is the default case for Angstrom), you will have to type the following command:

beagle$ ./togglegpio 130 0.05

The first argument tells which gpio port to toggle, the second tells how long to delay between toggling. In this example 0.05 s is 50 ms, which should give a period around 100ms. Measure the signal on an oscilloscope.

Assignment: gpio from the shell

Measuring a gpio pin on an Oscilloscope

Answer the following questions about gpio measurements.

  1. What's the min and max voltage?
  2. What period is it?
  3. How close is it to 100ms?
  4. Why do they differ?
  5. Run htop and see how much processor you are using.
  6. Try different values for the sleep time (2nd argument). What's the shortest period you can get? Make a table of the values you try and the corresponding period and processor usage.
  7. How stable is the period?
  8. Try launching something like mplayer. How stable is the period?
  9. Try cleaning up togglegpio and removing unneeded lines. Does it impact the period?
  10. togglegpio uses bash (first line in file). Try using sh. Is the period shorter?
  11. What's the shortest period you can get?

Toggling the LEDs

Modify togglegpio (call it toggleLED) to toggle the LEDs. Can you get the LED to appear to dim by changing the duty cycle of the toggling?

User Button to gpio 130

Write a shell script that reads the User Button and outputs it value on gpio pin 130.

Count the User Button Presses

Write a shell script that displays a count of the number of times the User Button has been pressed.

Copy gpio 130 to gpio 131

Write a shell script that copies the value of gpio pin 130 to gpio pin 131. How much CPU time does it take? What's the delay from the time the input changes until the output changes? How constant is the delay?

Resources

  1. Here is wh1ts article on flashing an LED. It is referenced in the readgpio file that comes on the Beagle.
  2. This Make magazine article has a few more details.
  3. Here in a gpio reference for Linux in general. It includes sample 'C' code for flashing at 1 Hz.
  4. Here is a posting in the Beagle Google group about gpio.
  5. Here is some information about gpio from the kernel point of view.
  6. Here is some info on a GPIO Event Driver
  7. Here is info on how to set edge to falling and poll() the pin.




thumb‎ Embedded Linux Class by Mark A. Yoder