Skip to content
This repository has been archived by the owner on Mar 3, 2019. It is now read-only.

Latest commit

 

History

History
44 lines (31 loc) · 1.24 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.24 KB

u8glib: Universal Graphics Library for 8 Bit Embedded Systems

This repository hosted on github is a mirror of u8glib.

Universal Graphics Library for 8 Bit Embedded Systems is a graphics library specifically useful for text and graphical output to LCDs commonly used in microcontroller platforms.

The git clone exists primarily to simplify inclusion of u8glib as a sub-repository in git-based projects.

  • Branch upstream is intended to track the default branch of the original Mercurial repository. Updates are done manually.

  • Branch master provides this file and merges from upstream.

  • Other branches may be present.

Details of Import

Initial creation was done with the following commands:

git clone git://repo.or.cz/fast-export.git

hg clone https://code.google.com/p/u8glib/ u8glib.hg

git init u8glib
cd u8glib
../fast-export/hg-fast-export.sh \
  -r /opt/u8glib.hg \
  -M upstream

Updates are done with:

cd ../u8glib.hg
hg pull
hg update
cd ../u8glib
../fast-export/hg-fast-export.sh \
  -r /opt/u8glib.hg \
  -M upstream