diff options
| author | Hans J. Koch <hjk@linutronix.de> | 2009-06-09 20:43:40 +0200 |
|---|---|---|
| committer | Hans J. Koch <hjk@linutronix.de> | 2009-06-09 20:43:40 +0200 |
| commit | e2a8cb5dfb6c9dbe4a437851fccdf69c0733b848 (patch) | |
| tree | 632927c60b7f077dca9cfc3984f7e39227556ac9 /linux-basics/what-is-linux/pres_what-is-linux_de.tex | |
| parent | 5f99e07a74acda8075ec344cb726666f5b035f95 (diff) | |
Initial commit.
Diffstat (limited to 'linux-basics/what-is-linux/pres_what-is-linux_de.tex')
| -rw-r--r-- | linux-basics/what-is-linux/pres_what-is-linux_de.tex | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/linux-basics/what-is-linux/pres_what-is-linux_de.tex b/linux-basics/what-is-linux/pres_what-is-linux_de.tex new file mode 100644 index 0000000..e03216a --- /dev/null +++ b/linux-basics/what-is-linux/pres_what-is-linux_de.tex @@ -0,0 +1,57 @@ +\documentclass{beamer} +\usetheme{linutronix} +\usepackage{german} +\usepackage[utf8]{inputenc} +\usepackage{pgf} +\usepackage{graphicx} + +\title{Title of Presentation} +%% \author{Hans-Jürgen Koch} +\institute{Linutronix GmbH} + +\begin{document} + +\maketitle + +% ----- Slide 1 ------------------ +\begin{frame} +%% \includegraphics[width=11cm]{myfirst.jpg} +\end{frame} + +% ----- Slide 2 ------------------ +\begin{frame} +\frametitle{A Frametitle} +\pause +\begin{itemize} +\item Item 1 +\pause +\item Item 2 +\pause +\item Item 3 +\pause +\item Item 4 +\pause +\begin{block}{Important stuff} +\end{block} +\end{itemize} +\end{frame} + +% ----- Slide with code -------------------------- +\begin{frame}[fragile] +\frametitle{UIO interrupt handler} +\begin{verbatim} +static irqreturn_t my_handler(int irq, + struct uio_info *dev_info) +{ + if (IRQ is not caused by my hardware) + return IRQ_NONE; + + /* Disable interrupt */ + (Perform some register access to silence the IRQ line) + + return IRQ_HANDLED; +} +\end{verbatim} +\end{frame} + +\end{document} |
