This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libopenstm32".
The branch, master has been updated
via 83f5c58eb996234ca98967db923133514e92ff7c (commit)
via 74db299094a2745f1113b8b8173bce2911350fd5 (commit)
via 3262983d27ee15fefeaa2efbe9a903f5364d7ee2 (commit)
via d43224acfbb31e23c2b3a6b7ea38626a7d4fbe21 (commit)
from 915d5bff90c86e1c8c072b0f13177f82283f3883 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 83f5c58eb996234ca98967db923133514e92ff7c
Author: Uwe Hermann <uw...@he...>
Date: Sat Jul 18 16:27:47 2009 +0200
Switch the license to GPL, version 3 or later.
commit 74db299094a2745f1113b8b8173bce2911350fd5
Author: Uwe Hermann <uw...@he...>
Date: Sat Jul 18 16:22:45 2009 +0200
Add examples for LED blinking code, both, manually and using the API.
commit 3262983d27ee15fefeaa2efbe9a903f5364d7ee2
Author: Uwe Hermann <uw...@he...>
Date: Sat Jul 18 16:20:32 2009 +0200
Add initial GPIO API implementation.
This currently includes a number of basic functions. Example usage:
gpio_set_mode(GPIOC, GPIO_MODE_OUTPUT_2_MHZ,
GPIO_CNF_OUTPUT_PUSHPULL, GPIO12);
gpio_set(GPIOB, GPIO4);
gpio_clear(GPIOG, GPIO2 | GPIO9);
gpio_toggle(GPIOA, GPIO7);
reg16 = gpio_port_read(GPIOD);
gpio_port_write(GPIOF, 0xc8fe);
commit d43224acfbb31e23c2b3a6b7ea38626a7d4fbe21
Author: Uwe Hermann <uw...@he...>
Date: Sat Jul 18 06:18:43 2009 +0200
Update example application README wrt flashing instructions.
-----------------------------------------------------------------------
Summary of changes:
COPYING | 895 ++++++++++++++++++++++++++------------
Makefile | 7 +-
README | 2 +-
example/Makefile | 7 +-
example/README | 9 +-
example/blink.c | 37 ++-
example/blink.ld | 7 +-
include/libopenstm32.h | 7 +-
include/libopenstm32/common.h | 7 +-
include/libopenstm32/gpio.h | 19 +-
include/libopenstm32/memorymap.h | 7 +-
include/libopenstm32/rcc.h | 7 +-
lib/Makefile | 7 +-
lib/gpio.c | 70 +++-
14 files changed, 745 insertions(+), 343 deletions(-)
hooks/post-receive
--
libopenstm32
|