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 caeba0c631576c2e35a0090f28f505cb6c6b40df (commit)
via b6f7fa57151b3d8e0d6c6400b52f063b2a678ba0 (commit)
via bdba3af3a6b62c66822ba61fe9413d3833bc8888 (commit)
via dc4a6a66ba8480803046c96c1b4d09488b3810be (commit)
via 3a2c63129ecdeca977d9f1832ec2f7bdbdcda5ff (commit)
via 1c459b8c48c9a7369ecc88691c7a7f63cf89b325 (commit)
via f0661cb343976d752f512644dc117125d102f89f (commit)
via 0efee48451d7eff92b7e6bd455aa0ef04b9afe17 (commit)
via c62ca6143d3ed344063424b59fa8b4c33af92ff6 (commit)
via 0fa4cbbdade4686d59ad1a6f1345488b5a0e2248 (commit)
via e7567c835c3c04bbba68a838ebaf43e4084b8866 (commit)
from 0a8135395a523ea1dd2409a9738a768e07ff9ec1 (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 caeba0c631576c2e35a0090f28f505cb6c6b40df
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 15:55:26 2009 +0200
Rename INCLUDEDIR to INCDIR for brevity.
commit b6f7fa57151b3d8e0d6c6400b52f063b2a678ba0
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 15:54:41 2009 +0200
Add missing .PHONY target.
commit bdba3af3a6b62c66822ba61fe9413d3833bc8888
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 15:49:28 2009 +0200
Create bin, hex, srec, and list files for the example project.
commit dc4a6a66ba8480803046c96c1b4d09488b3810be
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 15:21:59 2009 +0200
Add .gitignore file.
commit 3a2c63129ecdeca977d9f1832ec2f7bdbdcda5ff
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 15:15:26 2009 +0200
Use a Linux kernel style build output printing.
Example:
$ make install
BUILD lib
CC gpio.o
AR libopenstm32.a
BUILD example
CC blink.o
LD blink
INSTALL headers
INSTALL lib
$ make clean
CLEAN blink.o
CLEAN blink
CLEAN gpio.o
CLEAN libopenstm32.a
commit 1c459b8c48c9a7369ecc88691c7a7f63cf89b325
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 14:59:06 2009 +0200
Add 'make V=1' support for the example blink code.
commit f0661cb343976d752f512644dc117125d102f89f
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 14:55:22 2009 +0200
Make default build silent, use 'make V=1' for verbose build.
commit 0efee48451d7eff92b7e6bd455aa0ef04b9afe17
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 14:29:00 2009 +0200
Add first example project (framework) using libopenstm32.
This is intended as a small blink example for the Olimex STM32-H103 board.
It doesn't do anything useful (yet), but it builds fine.
There's a sample Makefile and a preliminary ld script (which probably
needs some more work).
commit c62ca6143d3ed344063424b59fa8b4c33af92ff6
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 14:23:25 2009 +0200
Make gpio number argument 'unsigned int', there are no negative GPIOs.
commit 0fa4cbbdade4686d59ad1a6f1345488b5a0e2248
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 14:22:46 2009 +0200
Add some more GPIO related #defines.
This includes GPIO port base addresses, MODE[1:0] values, and CNF[1:0]
values.
commit e7567c835c3c04bbba68a838ebaf43e4084b8866
Author: Uwe Hermann <uw...@he...>
Date: Thu Jul 16 14:20:18 2009 +0200
Add memorymap.h with some peripheral base addresses.
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 9 +++
Makefile | 38 ++++++++++---
example/Makefile | 74 ++++++++++++++++++++++++++
lib/gpio.c => example/blink.c | 15 +----
lib/gpio.c => example/blink.ld | 39 ++++++++++---
include/libopenstm32.h | 1 +
include/libopenstm32/gpio.h | 53 ++++++++++++++-----
include/libopenstm32/{gpio.h => memorymap.h} | 23 +++-----
lib/Makefile | 25 +++++++--
lib/gpio.c | 8 ++--
10 files changed, 220 insertions(+), 65 deletions(-)
create mode 100644 .gitignore
create mode 100644 example/Makefile
copy lib/gpio.c => example/blink.c (85%)
copy lib/gpio.c => example/blink.ld (57%)
copy include/libopenstm32/{gpio.h => memorymap.h} (70%)
hooks/post-receive
--
libopenstm32
|