Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ssd1306: simple driver with user application #52

Open
wants to merge 1 commit into
base: Sergii.Romantsov
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
674 changes: 674 additions & 0 deletions sandbox/LICENSE

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions sandbox/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SandBox for Linux kernel drivers learning

## ssd1306
A custom Linux Kernel module for the SSD1306 based 128x64 pixel OLED display.
These displays are small, only about 1" diameter, but very readable due to the high contrast of an OLED display. This display is made of 128x64 individual white OLED pixels, each one is turned on or off by the controller chip. Because the display makes its own light, no backlight is required.
SSD1306 communicates via I2C serial interface.
[DataSheet](https://www.olimex.com/Products/Modules/LCD/MOD-OLED-128x64/resources/SSD1306.pdf)

## userapp_analog_clock
A Linux userspace application. Draws a simple analog clock on fb0 FrameBuffer device.
[Low-Level Graphics on Linux](http://betteros.org/tut/graphics1.php)

![alt tag](https://www.mathworks.com/help/supportpkg/beagleboneio/ug/beaglebone_black_pinmap.png)

$KERNEL/arch/arm/boot/dts/
am335x-boneblack.dts
am335x-bone-common.dtsi

Loading