libopenstm32-commits Mailing List for libopenstm32 (Page 5)
Status: Inactive
Brought to you by:
uh1763
You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(28) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(14) |
Feb
(5) |
Mar
(10) |
Apr
(2) |
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
(2) |
Dec
(18) |
2011 |
Jan
(6) |
Feb
(3) |
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(8) |
Nov
(4) |
Dec
|
From: Uwe H. <uh...@us...> - 2009-07-16 16:06:37
|
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 |
From: Uwe H. <uh...@us...> - 2009-07-16 01:29:11
|
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 0a8135395a523ea1dd2409a9738a768e07ff9ec1 (commit) from 1b2f6456bf032d10be4420f35384a528eb766581 (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 0a8135395a523ea1dd2409a9738a768e07ff9ec1 Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 03:27:05 2009 +0200 Add dummy gpio.c implementation and final Makefile. The whole lib should now build and install fine. It's not yet tested on hardware, though. ----------------------------------------------------------------------- Summary of changes: include/libopenstm32.h | 1 + Makefile => lib/Makefile | 26 +++++++++++--------------- include/libopenstm32.h => lib/gpio.c | 18 ++++++++++++++---- 3 files changed, 26 insertions(+), 19 deletions(-) copy Makefile => lib/Makefile (67%) copy include/libopenstm32.h => lib/gpio.c (84%) hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-16 01:21:01
|
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 1b2f6456bf032d10be4420f35384a528eb766581 (commit) from 75bb51fadfbc10993630203a1ef5bd76154a2d69 (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 1b2f6456bf032d10be4420f35384a528eb766581 Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 03:20:12 2009 +0200 Add some initial gpio.h #defines. ----------------------------------------------------------------------- Summary of changes: include/libopenstm32/{stdint.h => gpio.h} | 22 ++++++++++++++-------- 1 files changed, 14 insertions(+), 8 deletions(-) copy include/libopenstm32/{stdint.h => gpio.h} (70%) hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-16 00:49:25
|
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 75bb51fadfbc10993630203a1ef5bd76154a2d69 (commit) from ae6f32181640cfb9ac7222c185135fe4568b98c7 (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 75bb51fadfbc10993630203a1ef5bd76154a2d69 Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 02:40:10 2009 +0200 Add top-level include file intended for lib users. ----------------------------------------------------------------------- Summary of changes: include/{libopenstm32/stdint.h => libopenstm32.h} | 12 +++--------- 1 files changed, 3 insertions(+), 9 deletions(-) copy include/{libopenstm32/stdint.h => libopenstm32.h} (79%) hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-16 00:27:41
|
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 ae6f32181640cfb9ac7222c185135fe4568b98c7 (commit) from 74620a94d02dbdad02aec304298f0c933bcfd480 (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 ae6f32181640cfb9ac7222c185135fe4568b98c7 Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 02:14:17 2009 +0200 Add a stdint.h include file for u16, u32, etc. ----------------------------------------------------------------------- Summary of changes: include/libopenstm32/stdint.h | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 include/libopenstm32/stdint.h hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-15 23:56:27
|
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 74620a94d02dbdad02aec304298f0c933bcfd480 (commit) from 1b708b68b619444820bcde9c849c6eb387e330d4 (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 74620a94d02dbdad02aec304298f0c933bcfd480 Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 01:55:48 2009 +0200 Add initial top-level Makefile. ----------------------------------------------------------------------- Summary of changes: Makefile | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 42 insertions(+), 0 deletions(-) create mode 100644 Makefile hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-15 23:33:13
|
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 1b708b68b619444820bcde9c849c6eb387e330d4 (commit) from 43d2a531279acd3a929832063c0ac247bb20c72c (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 1b708b68b619444820bcde9c849c6eb387e330d4 Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 01:30:45 2009 +0200 Drop 's' from https, no need for encryption here. ----------------------------------------------------------------------- Summary of changes: README | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-15 23:24:32
|
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 43d2a531279acd3a929832063c0ac247bb20c72c (commit) from e5c5371997cd1d5cdf69867fe634321f861470c1 (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 43d2a531279acd3a929832063c0ac247bb20c72c Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 01:23:48 2009 +0200 Mention how PREFIX can be used to override the toolchain. ----------------------------------------------------------------------- Summary of changes: README | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-15 22:02:14
|
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 e5c5371997cd1d5cdf69867fe634321f861470c1 (commit) from b201bf19cb4db94980285deb3ae63307e47b80b0 (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 e5c5371997cd1d5cdf69867fe634321f861470c1 Author: Uwe Hermann <uw...@he...> Date: Thu Jul 16 00:01:41 2009 +0200 Add some more info to the README. ----------------------------------------------------------------------- Summary of changes: README | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 54 insertions(+), 1 deletions(-) hooks/post-receive -- libopenstm32 |
From: Uwe H. <uh...@us...> - 2009-07-15 20:34:34
|
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 b201bf19cb4db94980285deb3ae63307e47b80b0 (commit) from e86ae96e1b8a7a0d6fbf5282a2afe12d2b0be146 (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 b201bf19cb4db94980285deb3ae63307e47b80b0 Author: Uwe Hermann <uw...@he...> Date: Wed Jul 15 22:27:39 2009 +0200 Add COPYING file. ----------------------------------------------------------------------- Summary of changes: COPYING | 339 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 339 insertions(+), 0 deletions(-) create mode 100644 COPYING hooks/post-receive -- libopenstm32 |