Difference between revisions of "EBC Exercise 10 Flashing an LED"

From eLinux.org
Jump to: navigation, search
m (Reading a gpio pin with an Oscilloscope)
m (Challenge: Removed)
 
(65 intermediate revisions by 8 users not shown)
Line 2: Line 2:
 
[[Category:ECE497]]
 
[[Category:ECE497]]
 
{{YoderHead}}
 
{{YoderHead}}
 +
{{EBC3.8}}This page is for the Bone (Black or White) running the 3.8 Kernel. See [[EBC_Exercise_10_Flashing_an_LED_-_xM_WhiteBone]] for the White Bone or xM running 3.2.
  
The [http://en.wikipedia.org/wiki/Hello_world_program "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.
+
The [http://en.wikipedia.org/wiki/Hello_world_program "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 an LED on the Beagle and explore General Purpose I/O (gpio) along the way.  These calls will 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 ==
 
== 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.
+
('''Note''': Draw the new diagrams with [http://engineersofthecorn.blogspot.com/2012/06/fritzing-part-for-beaglebone.html this].)
  
Try this, open a terminal by selecting '''Applications:Accessories:Terminal'''
+
The easiest way to do general purpose I/O (gpio) on the Beagle is through a terminal window and a shell prompt. In Linux, almost 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 can easily use them.
  
[[File:Terminal.png‎]]
+
Try this, open a terminal and type:
 
 
Then type:
 
  
 
  beagle$ '''cd /sys'''
 
  beagle$ '''cd /sys'''
Line 25: Line 24:
 
  beagle$ '''cd /sys/class'''
 
  beagle$ '''cd /sys/class'''
 
  beagle$ '''ls -F'''
 
  beagle$ '''ls -F'''
  bccat/     hwmon/       mtd/             scsi_disk/     usb_device/
+
  backlight/ firmware/    lcd/       mtd/           scsi_disk/   ubi/
  bdi/        i2c-adapter/ net/             scsi_generic/ usbmon/
+
  bdi/        gpio/        leds/     net/           scsi_host/   udc/
  block/      i2c-dev/      omap-previewerscsi_host/     vc/
+
  block/      graphics/    mbox/      power_supplysound/       uio/
  bluetooth/  input/        omap-resizer/   sound/        video4linux/
+
  bluetooth/  hwmon/        mdio_busregulator/     spi_master/ usbmon/
  bsg/       leds/        pvr/            spi_master/   vtconsole/
+
  bsg/       i2c-adapter/  mem/       rfkill/       spidev/      vc/
  display/   mdio_bus/    regulator/       spidev/
+
  dma/        i2c-dev/     misc/     rtc/           thermal/    vtconsole/
  firmware/  mem/         rfkill/         thermal/
+
  drm/        input/       mmc_host/ scsi_device/   tty/        watchdog/
  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 [http://www.alsa-project.org/main/index.php/Main_Page alsa] sound devices.
+
Explore some.  What do you find?  In '''graphics''' you will see the frame buffer supported by the processor.  In '''sound''' you'll see the [http://www.alsa-project.org/main/index.php/Main_Page alsa] sound devices.
  
=== Reading the Keyboard and Mouse ===
+
== Flashing the user LEDs ==
Try this:
 
  
beagle$ '''cd /sys/class/input'''
+
The Beagle Black has four user LEDS, '''usr0''' - '''usr3''', that you can control. Try this:
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$ '''cd /sys/class/leds'''
  beagle$ '''ls -F'''
+
  beagle$ '''ls -1F'''
  beaglebeagleboard::pmu_statbeagleboard::usr0beagleboard::usr1@
+
  beaglebone:green:usr0@
 +
  beaglebone:green:usr1@
 +
beaglebone:green:usr2@
 +
  beaglebone:green:usr3@
  
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.
+
Here you see the directories for controlling each of the user 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$ '''cd beagleboard\:green\:usr0'''
 
  beagle$ '''ls -F'''
 
  beagle$ '''ls -F'''
 
  brightness  device@  max_brightness  power/  subsystem@  trigger  uevent
 
  brightness  device@  max_brightness  power/  subsystem@  trigger  uevent
Line 63: Line 54:
  
 
  beagle$ '''cat trigger'''
 
  beagle$ '''cat trigger'''
  none nand-disk mmc0 [heartbeat]
+
  none nand-disk mmc0 mmc1 timer oneshot [heartbeat] backlight gpio cpu0 default-on transient
  
This shows trigger can have 4 values.  The present value is '''heartbeat'''.  Check the LED, is the beating?  You can stop the heartbeat via:
+
This shows trigger can have many values.  The present value is '''heartbeat'''.  Check the LED, is it beating?  You can stop the heartbeat via:
  
 
  beagle$ '''echo none > trigger'''
 
  beagle$ '''echo none > trigger'''
 
  beagle$ '''cat trigger'''
 
  beagle$ '''cat trigger'''
  [none] nand-disk mmc0 heartbeat  
+
  [none] nand-disk mmc0 mmc1 timer oneshot heartbeat backlight gpio cpu0 default-on transient
  
 
Did it stop beating?  You can now turn it on and off with:
 
Did it stop beating?  You can now turn it on and off with:
Line 78: Line 69:
 
Is it responding correctly?
 
Is it responding correctly?
  
=== Reading the User Button ===
+
The Bone has more trigger optionsTry:
The Beagle has a couple of push buttons. One reboots the whole boardUse with care.  One is for you to use, it's to the right of the Reset button, between the two stacks of USB ports.
 
[[File:BeagleUserButton.png]]
 
  
It's attached to gpio port 4.  You can read it via:
+
beagle$ '''cat trigger'''
 
+
[none] nand-disk mmc0 mmc1 timer oneshot heartbeat backlight gpio cpu0 default-on transient
  beagle$ '''cd /sys/class/gpio'''
+
  beagle$ '''echo timer > trigger'''
 
  beagle$ '''ls -F'''
 
  beagle$ '''ls -F'''
  export    gpio133@ gpio137@ gpio141@      gpiochip160gpiochip96@
+
  brightness  delay_on max_brightness subsystemuevent
  gpio130@  gpio134@ gpio138@  gpio162@      gpiochip192@  unexport
+
  delay_off  device@   power/          trigger
  gpio131@  gpio135@  gpio139@  gpiochip0@    gpiochip32@
+
  beagle$ '''echo 100 > delay_on'''
  gpio132@  gpio136@  gpio140@  gpiochip128@  gpiochip64@
+
  beagle$ '''echo 900 > delay_off'''
  
Notice there is no gpio4.  Here's how you can create it, set it to an input port and read its value:
+
What does this do?
  
beagle$ '''echo 4 > export'''
+
== Adding your own LED ==
beagle$ '''ls'''
+
It's not hard to use the gpio pins to control your own LED. All you need is an LED and a 220Ω resistor. Here's a picture of how it's wired. We are just doing the LED at the top of the breadboard for now.
beagle$ '''cd gpio4'''
 
beagle$ '''echo in > direction'''
 
beagle$ '''cat value'''
 
  
Try holding down the switch and doing <code>cat value</code> again. Does the value change?  There's a shell script called '''readgpio''' that repeatedly reads the switch.
+
[[File:Bone gpio.JPG|300px]]
 +
[[File:BoneGPIO.png|300px]]
  
  beagle$ '''readgpio 4'''
+
So how do you know where to connect it? The BeagleBone [https://github.com/CircuitCo/BeagleBone-Black/blob/master/BBB_SRM.pdf?raw=true System Reference Manual] has the details.  Figure 45 on page 74 shows:
  
Try pushing the switch. Does it work?  Hit ctrl-C to stop.  Look at readgpio.  How does it work?
+
[[File:BlackHeaders.jpg]]
  
  beagle$ '''which readgpio'''
+
There at two expansion headers, P8 and P9. Look at the bottom of the left header and you'll see it's labeled '''P9'''. Table 11 on page 78 shows the pinout for P9.
beagle$ '''cp /usr/bin/readgpio ~'''
 
beagle$ '''gedit ~/readgpio'''
 
  
=== Reading a gpio pin with an Oscilloscope ===
+
[[File:HeaderP9.jpg|800px]]
You can easily access many of the gpio pins via the Main Expansion Header.  Page 107 of the [http://beagleboard.org/static/BBxMSRM_latest.pdf BeagleBoard-xM System Reference Manual] has this figure.
 
[[File:MainHeader.png | 750px]]
 
  
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 [http://beagleboard.org/static/BBSRM_latest.pdf System Reference Manual].
+
On the first photo above you can see that pin 1 (Ground) is wired to the '''-''' bus and pin 3 (3.3V) is wired to the '''+''' bus. The 220&Omega; resistor is wired to the '''-''' bus and the other end is attached to the negative lead of the LED.  The positive lead is attached to pin 12 which, as shown in Table 11, is attached to '''gpio1_28'''.  The gpio pins are in banks of 32 each, so to find the gpio number to use on the Beagle, use 1*32+28='''60'''Here's how you turn it on
 
 
[[File: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 theseNow, let's put a signal on the pin.
 
  
 
  beagle$ '''cd /sys/class/gpio'''
 
  beagle$ '''cd /sys/class/gpio'''
 
  beagle$ '''ls -F'''
 
  beagle$ '''ls -F'''
  export     gpiochip128gpiochip192@  gpiochip64@  unexport
+
  export gpiochip0gpiochip32@  gpiochip64@  gpiochip96unexport
gpiochip0gpiochip160@  gpiochip32@  gpiochip96@
 
  
Notice there is no folder for gpio130Create it with:
+
Presently no gpio pins are visibleYou need to tell it which pin to export
  
  beagle$ '''echo 130 > export'''
+
  beagle$ '''echo 60 > export'''
 
  beagle$ '''ls -F'''
 
  beagle$ '''ls -F'''
  export   gpiochip0@    gpiochip160@ gpiochip32gpiochip96@
+
  export  gpio60gpiochip0gpiochip32gpiochip64gpiochip96@  unexport
  gpio130gpiochip128gpiochip192@  gpiochip64@  unexport
 
 
 
Update your exercises folder and cd to gpio directory.
 
 
 
  beagle$ '''cd'''
 
  beagle$ '''cd exercises/gpio'''
 
  beagle$ '''git pull'''
 
  beagle$ '''gedit togglegpio.sh'''
 
 
 
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 ===
 
 
 
==== <span style="color:green;">Measuring a gpio pin on an Oscilloscope </span> ====
 
  
Answer the following questions about gpio measurements.
+
Notice '''gpio60''' has appeared.  All we need to do is tell it which direction and then turn it on.
  
# What's the min and max voltage? 
+
  beagle$ '''cd gpio60'''
# What period is it? 
+
  beagle$ '''echo out > direction'''
# How close is it to 100ms?  
+
  beagle$ '''echo 1 > value'''
# Why do they differ?
 
# Run '''htop''' and see how much processor you are using.
 
# 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.
 
# How stable is the period?  
 
# Try launching something like '''mplayer'''. How stable is the period?
 
# Try cleaning up togglegpio and removing unneeded lines. Does it impact the period?
 
# togglegpio uses bash (first line in file).  Try using sh.  Is the period shorter?
 
# What's the shortest period you can get?
 
  
==== Toggling the LEDs ====
+
Your LED should be on!  When you are done you can unexport the pin and it will disappear.
 +
beagle$ '''cd ..'''
 +
beagle$ '''echo 60 > unexport'''
  
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?
+
== Reading a switch ==
  
==== User Button to gpio 130 ====
+
Now that you have an LED working, wiring in a switch is easy.  The picture above shows a push button switch wired in at the bottom of the P9 header.  Attach the '''+''' bus to one pole on the switch with a wire.  The other end of the switch is attached to pin 42 which is '''gpio0_7'''.
  
Write a shell script that reads the User Button and outputs it value on gpio pin 130.
+
Based on what you saw above, show how to read the switch.
  
==== Count the User Button Presses ====
+
Once you have the switch and LED working you can use the following scripts to play with them.
  
Write a shell script that displays a count of the number of times the User Button has been pressed.
+
beagle$ '''cd ~/exercises/gpio'''
 +
beagle$ '''./togglegpio.sh 60 0.1'''
  
==== Copy gpio 130 to gpio 131 ====
+
The LED should be blinking on and off.
  
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?
+
beagle$ '''./readgpio.sh 7'''
  
== Resources ==
+
Push the pushbutton and see what happens.
  
# [http://wh1t3s.com/2009/05/14/reading-beagleboard-gpio/ Here] is wh1ts article on flashing an LED.  It is referenced in the '''readgpio''' file that comes on the Beagle.
+
How can this work without a pulldown resistor? It turns out the Bone has an internal pulldown (and up) resistor that can be software enabled. We'll discuss how when we cover device trees.
# [http://blog.makezine.com/archive/2009/02/blinking-leds-with-the-beagle-board.html?CMP=OTC-0D6B48984890 This] Make magazine article has a few more details.
 
# [http://www.avrfreaks.net/wiki/index.php/Documentation:Linux/GPIO#Getting_access_to_a_GPIO Here] in a gpio reference for Linux in general. It includes sample 'C' code for flashing at 1 Hz.
 
# [https://groups.google.com/forum/?hl=en#!msg/beagleboard/20rM-r8C2YY/hVZiN2ahI8YJ Here] is a posting in the Beagle Google group about gpio.
 
# [http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/gpio.txt;h=36af58eba136bac198ea3b1f33f34236be9ce5df;hb=HEAD Here] is some information about gpio from the kernel point of view.
 
# [http://wiki.gumstix.org/index.php?title=GPIO_Event_Driver Here] is some info on a GPIO Event Driver
 
# [https://www.ridgerun.com/developer/wiki/index.php/How_to_use_GPIO_signals Here] is info on how to set '''edge''' to falling and poll() the pin.
 
  
 
{{YoderFoot}}
 
{{YoderFoot}}

Latest revision as of 09:44, 3 September 2018

thumb‎ Embedded Linux Class by Mark A. Yoder


3.8 Kernel

This page is for the Bone (Black or White) running the 3.8 Kernel. See EBC_Exercise_10_Flashing_an_LED_-_xM_WhiteBone for the White Bone or xM running 3.2.

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 an LED on the Beagle and explore General Purpose I/O (gpio) along the way. These calls will 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

(Note: Draw the new diagrams with this.)

The easiest way to do general purpose I/O (gpio) on the Beagle is through a terminal window and a shell prompt. In Linux, almost 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 can easily use them.

Try this, open a terminal and 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
backlight/  firmware/     lcd/       mtd/           scsi_disk/   ubi/
bdi/        gpio/         leds/      net/           scsi_host/   udc/
block/      graphics/     mbox/      power_supply/  sound/       uio/
bluetooth/  hwmon/        mdio_bus/  regulator/     spi_master/  usbmon/
bsg/        i2c-adapter/  mem/       rfkill/        spidev/      vc/
dma/        i2c-dev/      misc/      rtc/           thermal/     vtconsole/
drm/        input/        mmc_host/  scsi_device/   tty/         watchdog/

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

Flashing the user LEDs

The Beagle Black has four user LEDS, usr0 - usr3, that you can control. Try this:

beagle$ cd /sys/class/leds
beagle$ ls -1F
beaglebone:green:usr0@
beaglebone:green:usr1@
beaglebone:green:usr2@
beaglebone:green:usr3@

Here you see the directories for controlling each of the user 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\:green\: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 mmc1 timer oneshot [heartbeat] backlight gpio cpu0 default-on transient

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

beagle$ echo none > trigger
beagle$ cat trigger
[none] nand-disk mmc0 mmc1 timer oneshot heartbeat backlight gpio cpu0 default-on transient 

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?

The Bone has more trigger options. Try:

beagle$ cat trigger
[none] nand-disk mmc0 mmc1 timer oneshot heartbeat backlight gpio cpu0 default-on transient 
beagle$ echo timer > trigger
beagle$ ls -F
brightness  delay_on  max_brightness  subsystem@  uevent
delay_off   device@   power/          trigger
beagle$ echo 100 > delay_on
beagle$ echo 900 > delay_off

What does this do?

Adding your own LED

It's not hard to use the gpio pins to control your own LED. All you need is an LED and a 220Ω resistor. Here's a picture of how it's wired. We are just doing the LED at the top of the breadboard for now.

Bone gpio.JPG BoneGPIO.png

So how do you know where to connect it? The BeagleBone System Reference Manual has the details. Figure 45 on page 74 shows:

BlackHeaders.jpg

There at two expansion headers, P8 and P9. Look at the bottom of the left header and you'll see it's labeled P9. Table 11 on page 78 shows the pinout for P9.

HeaderP9.jpg

On the first photo above you can see that pin 1 (Ground) is wired to the - bus and pin 3 (3.3V) is wired to the + bus. The 220Ω resistor is wired to the - bus and the other end is attached to the negative lead of the LED. The positive lead is attached to pin 12 which, as shown in Table 11, is attached to gpio1_28. The gpio pins are in banks of 32 each, so to find the gpio number to use on the Beagle, use 1*32+28=60. Here's how you turn it on

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

Presently no gpio pins are visible. You need to tell it which pin to export

beagle$ echo 60 > export
beagle$ ls -F
export  gpio60@  gpiochip0@  gpiochip32@  gpiochip64@  gpiochip96@  unexport

Notice gpio60 has appeared. All we need to do is tell it which direction and then turn it on.

beagle$ cd gpio60
beagle$ echo out > direction
beagle$ echo 1 > value

Your LED should be on! When you are done you can unexport the pin and it will disappear.

beagle$ cd ..
beagle$ echo 60 > unexport

Reading a switch

Now that you have an LED working, wiring in a switch is easy. The picture above shows a push button switch wired in at the bottom of the P9 header. Attach the + bus to one pole on the switch with a wire. The other end of the switch is attached to pin 42 which is gpio0_7.

Based on what you saw above, show how to read the switch.

Once you have the switch and LED working you can use the following scripts to play with them.

beagle$ cd ~/exercises/gpio
beagle$ ./togglegpio.sh 60 0.1

The LED should be blinking on and off.

beagle$ ./readgpio.sh 7

Push the pushbutton and see what happens.

How can this work without a pulldown resistor? It turns out the Bone has an internal pulldown (and up) resistor that can be software enabled. We'll discuss how when we cover device trees.




thumb‎ Embedded Linux Class by Mark A. Yoder