Skip to content

Commit

Permalink
Licence and readme
Browse files Browse the repository at this point in the history
 * Added the COPYING file with MIT Licence text.
 * Updated README, mentioned new GPIO drivers.
  • Loading branch information
burjui committed Mar 5, 2012
1 parent a998558 commit 1660f17
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
7 changes: 7 additions & 0 deletions COPYING
@@ -0,0 +1,7 @@
Copyright (C) 2012 Artem Borisovskiy (bytefu@gmail.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 changes: 17 additions & 5 deletions README
@@ -1,5 +1,17 @@
Cross-platform library for LCDs with HD44780-compatible controller. Cross-platform library for LCDs with HD44780-compatible controllers written in
The library is designed to allow you to write drivers for your hardware pure C99 (C 1999 year standard). The library is designed to allow you to write
platform without rewriting the library itself. There is only STM32F10x GPIO drivers for your hardware platform without rewriting the library itself,
driver at the time. Originally, this was direct port of LiquidCrystalExt thus making it truly platform independent.
library for Arduino, from C++ classes to plain C functions and structures.
Originally this was a direct port of LiquidCrystalExt library for Arduino,
from C++ classes to plain C functions and structures, but now it only
resembles the original interface and is quite different inside.

At the moment there are several GPIO drivers available for the following
microcontroller families:
* STM32F10x
* STM32F2xx
* STM32F4xx
* STM32L1xx

More will be added in the future.

0 comments on commit 1660f17

Please sign in to comment.