[libopenstm32-commits] libopenstm32 branch, master, updated. dfa9145a34453750c7f67c187b23911c3c0e44
Status: Inactive
Brought to you by:
uh1763
From: Uwe H. <uh...@us...> - 2011-02-09 01:50:43
|
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 dfa9145a34453750c7f67c187b23911c3c0e44c9 (commit) via 1cb45d8888ae922a8c20d9a84bc43de81b45a7b0 (commit) via 5bfffcbb29849bbeb4df2e78b43ca408443196dc (commit) via 62f3897a2e03a4b935b2ef4b1a694c8923d8e802 (commit) via 0a0ce22762136f0a65af13ea2e160913c6af8767 (commit) via e0a488f586abd24c8b3448ceb0fc94a10c572cc0 (commit) via d67795f383c2757082b0481816789ca12a866172 (commit) via 4b5f9b4a352943464c51068416c6966b24dd487e (commit) from 559bc52fa41c63999102cef3567e5fae18493424 (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 dfa9145a34453750c7f67c187b23911c3c0e44c9 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 02:41:23 2011 +0100 STM32VLDISCOVERY: Fix ld file comments (STM32F100RB). commit 1cb45d8888ae922a8c20d9a84bc43de81b45a7b0 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 02:38:16 2011 +0100 STM32VLDISCOVERY: Fix some incorrect GPIO comments. commit 5bfffcbb29849bbeb4df2e78b43ca408443196dc Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 02:34:50 2011 +0100 Use ST STM32VLDISCOVERY board name consistently. commit 62f3897a2e03a4b935b2ef4b1a694c8923d8e802 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 02:22:20 2011 +0100 Add some examples for the STM32-Discovery board. This adds a directory of examples, tested on the STM32-Discovery, just modifications of: button, miniblink, fancyblink, usart, and rtc. Thanks Marko Kraljevic <kra...@gm...> for the patch! commit 0a0ce22762136f0a65af13ea2e160913c6af8767 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 01:56:53 2011 +0100 Add rcc_clock_setup_in_hse_8mhz_out_24mhz(). Thanks Marko Kraljevic <kra...@gm...> for the patch! commit e0a488f586abd24c8b3448ceb0fc94a10c572cc0 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 01:53:53 2011 +0100 gpio_toggle(): Add support for multiple GPIOs. Thanks Marko Kraljevic <kra...@gm...> for the patch! commit d67795f383c2757082b0481816789ca12a866172 Author: Gareth McMullin <ga...@bl...> Date: Wed Feb 9 14:31:17 2011 +1300 Added missing lm3s header files. commit 4b5f9b4a352943464c51068416c6966b24dd487e Author: Gareth McMullin <ga...@bl...> Date: Wed Feb 9 14:28:06 2011 +1300 Added missing lm3s gpio.h. ----------------------------------------------------------------------- Summary of changes: examples/stm32/Makefile | 10 ++- examples/stm32/{mb525 => stm32-discovery}/Makefile | 36 +++++++--- .../button/Makefile | 0 .../usb_iap => stm32-discovery/button}/README | 4 +- .../button/button.c | 21 +++--- .../usart.ld => stm32-discovery/button/button.ld} | 4 +- .../{mb525 => stm32-discovery}/fancyblink/Makefile | 0 .../stm32-discovery/fancyblink}/README | 4 +- .../fancyblink/fancyblink.c | 23 ++++--- .../fancyblink/fancyblink.ld} | 4 +- .../miniblink/Makefile | 0 .../stm32-discovery}/miniblink/README | 4 +- .../miniblink/miniblink.c | 20 +++--- .../miniblink/miniblink.ld} | 4 +- .../stm32/{other => stm32-discovery}/rtc/Makefile | 0 examples/stm32/stm32-discovery/rtc/README | 9 +++ .../stm32/{other => stm32-discovery}/rtc/rtc.c | 37 +++++++--- .../usart/usart.ld => stm32-discovery/rtc/rtc.ld} | 4 +- .../{obldc => stm32-discovery}/usart/Makefile | 0 .../{stm32-h103 => stm32-discovery}/usart/README | 5 +- .../stm32/{obldc => stm32-discovery}/usart/usart.c | 41 +++++------ .../{obldc => stm32-discovery}/usart/usart.ld | 4 +- include/libopencm3/lm3s/gpio.h | 75 ++++++++++++++++++++ include/libopencm3/lm3s/memorymap.h | 47 ++++++++++++ include/libopencm3/lm3s/systemcontrol.h | 61 ++++++++++++++++ include/libopencm3/stm32/rcc.h | 1 + lib/stm32/gpio.c | 10 +-- lib/stm32/rcc.c | 53 ++++++++++++++ 28 files changed, 378 insertions(+), 103 deletions(-) copy examples/stm32/{mb525 => stm32-discovery}/Makefile (51%) copy examples/stm32/{stm32-h103 => stm32-discovery}/button/Makefile (100%) copy examples/stm32/{stm32-h103/usb_iap => stm32-discovery/button}/README (56%) copy examples/stm32/{stm32-h103 => stm32-discovery}/button/button.c (78%) copy examples/stm32/{obldc/usart/usart.ld => stm32-discovery/button/button.ld} (88%) copy examples/stm32/{mb525 => stm32-discovery}/fancyblink/Makefile (100%) copy examples/{lm3s/lm3s3748-evb/miniblink => stm32/stm32-discovery/fancyblink}/README (70%) copy examples/stm32/{stm32-h107 => stm32-discovery}/fancyblink/fancyblink.c (67%) copy examples/stm32/{obldc/led/led.ld => stm32-discovery/fancyblink/fancyblink.ld} (88%) copy examples/stm32/{stm32-h103 => stm32-discovery}/miniblink/Makefile (100%) copy examples/{lm3s/lm3s3748-evb => stm32/stm32-discovery}/miniblink/README (70%) copy examples/stm32/{stm32-h103 => stm32-discovery}/miniblink/miniblink.c (77%) copy examples/stm32/{obldc/usart/usart.ld => stm32-discovery/miniblink/miniblink.ld} (88%) copy examples/stm32/{other => stm32-discovery}/rtc/Makefile (100%) create mode 100644 examples/stm32/stm32-discovery/rtc/README copy examples/stm32/{other => stm32-discovery}/rtc/rtc.c (73%) copy examples/stm32/{obldc/usart/usart.ld => stm32-discovery/rtc/rtc.ld} (88%) copy examples/stm32/{obldc => stm32-discovery}/usart/Makefile (100%) copy examples/stm32/{stm32-h103 => stm32-discovery}/usart/README (68%) copy examples/stm32/{obldc => stm32-discovery}/usart/usart.c (66%) copy examples/stm32/{obldc => stm32-discovery}/usart/usart.ld (88%) create mode 100644 include/libopencm3/lm3s/gpio.h create mode 100644 include/libopencm3/lm3s/memorymap.h create mode 100644 include/libopencm3/lm3s/systemcontrol.h hooks/post-receive -- libopenstm32 |