[libopenstm32-commits] libopenstm32 branch, master, updated. 559bc52fa41c63999102cef3567e5fae184934
Status: Inactive
Brought to you by:
uh1763
From: Uwe H. <uh...@us...> - 2011-02-09 00:37:00
|
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 559bc52fa41c63999102cef3567e5fae18493424 (commit) via 401a0a8e8b18f6dd087d4d3f62f265308f59c4a9 (commit) via 87c94e9a3786294515a381d0458e751e9e53549c (commit) via 47e2736013f1929f8eef074cdd040f47cbee9800 (commit) via 447c333cecfdf417d47091631768f439c06dc33f (commit) via 5aa39a5264fd6176cfcc869ccbe2363abdd1c9c3 (commit) via 0d7d0fe8290ada82c97fd78f44f6116d0117c33a (commit) via 4954b4c006149838d2816a12edd47899ccb3ade5 (commit) via d4b04cbd26b3d348712ed9ae4184d7a434ecc8e5 (commit) via 769a932f3ec147bddbf488a88214dfb12a4eed78 (commit) from 729a48c6557ec4ef4b0ec87f2de47010f8066ee8 (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 559bc52fa41c63999102cef3567e5fae18493424 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 01:33:00 2011 +0100 Add some missing LIBOPENCM3_ prefixes. commit 401a0a8e8b18f6dd087d4d3f62f265308f59c4a9 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 01:31:16 2011 +0100 FPB: More consistency fixes. Fix incorrect FPB_CTRL_NUM_CODE2_MASK value, too. commit 87c94e9a3786294515a381d0458e751e9e53549c Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 01:18:55 2011 +0100 FPB: Fix typo. commit 47e2736013f1929f8eef074cdd040f47cbee9800 Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 01:11:16 2011 +0100 FPB: Minor additions, consistency fixes. commit 447c333cecfdf417d47091631768f439c06dc33f Author: Uwe Hermann <uw...@he...> Date: Wed Feb 9 01:06:43 2011 +0100 Minor cosmetics, whitespace. commit 5aa39a5264fd6176cfcc869ccbe2363abdd1c9c3 Author: Gareth McMullin <ga...@bl...> Date: Tue Feb 8 19:43:10 2011 +1300 Added missing DBGMCU_BASE to STM32 memorymap.h commit 0d7d0fe8290ada82c97fd78f44f6116d0117c33a Author: Gareth McMullin <ga...@bl...> Date: Tue Feb 8 19:40:16 2011 +1300 Added Flash Patch and Breakpoint (FPB) register definitions. commit 4954b4c006149838d2816a12edd47899ccb3ade5 Author: Gareth McMullin <ga...@bl...> Date: Tue Feb 8 19:26:38 2011 +1300 Added ARMv7-M Core Debug (SCS) register definitions. commit d4b04cbd26b3d348712ed9ae4184d7a434ecc8e5 Author: Gareth McMullin <ga...@bl...> Date: Tue Feb 8 19:07:59 2011 +1300 Added STM32 DBGMCU register definitions. commit 769a932f3ec147bddbf488a88214dfb12a4eed78 Author: Gareth McMullin <ga...@bl...> Date: Fri Feb 4 22:47:51 2011 +1300 Added initial support for the LuminaryMicro LM3S family. ----------------------------------------------------------------------- Summary of changes: Makefile | 8 ++- examples/{lpc13xx => lm3s}/Makefile | 14 ++-- examples/{lpc13xx => lm3s}/Makefile.include | 6 +- .../lpc-p1343 => lm3s/lm3s3748-evb}/Makefile | 4 +- .../lm3s3748-evb}/miniblink/Makefile | 0 .../lm3s3748-evb}/miniblink/README | 5 +- .../lm3s3748-evb}/miniblink/miniblink.c | 22 +++-- .../lm3s3748-evb}/miniblink/miniblink.ld | 8 +- examples/stm32/lisa-m/usb_dfu/usbdfu.ld | 2 +- examples/stm32/lisa-m/usb_hid/usbhid.ld | 1 - examples/stm32/other/usb_cdcacm/cdcacm.ld | 2 +- examples/stm32/other/usb_dfu/usbdfu.ld | 2 +- examples/stm32/other/usb_hid/usbhid.ld | 2 +- examples/stm32/stm32-h103/usb_cdcacm/cdcacm.ld | 1 - examples/stm32/stm32-h103/usb_dfu/usbdfu.ld | 2 +- examples/stm32/stm32-h103/usb_hid/usbhid.ld | 1 - examples/stm32/stm32-h103/usb_iap/usbiap.ld | 1 - include/libopencm3/cm3/common.h | 4 +- include/libopencm3/cm3/fpb.h | 76 ++++++++++++++++ include/libopencm3/cm3/memorymap.h | 4 +- include/libopencm3/cm3/scs.h | 60 ++++++++++++ include/libopencm3/stm32/dbgmcu.h | 60 ++++++++++++ include/libopencm3/stm32/memorymap.h | 3 + lib/{lpc13xx => lm3s}/Makefile | 4 +- lib/{stm32/scb.c => lm3s/gpio.c} | 13 ++-- .../libopencm3_lm3s.ld} | 4 +- lib/lm3s/vector.c | 96 ++++++++++++++++++++ lib/lpc13xx/libopencm3_lpc13xx.ld | 2 +- lib/stm32/libopencm3_stm32.ld | 2 +- 29 files changed, 356 insertions(+), 53 deletions(-) copy examples/{lpc13xx => lm3s}/Makefile (81%) copy examples/{lpc13xx => lm3s}/Makefile.include (95%) copy examples/{lpc13xx/lpc-p1343 => lm3s/lm3s3748-evb}/Makefile (89%) copy examples/{lpc13xx/lpc-p1343 => lm3s/lm3s3748-evb}/miniblink/Makefile (100%) copy examples/{lpc13xx/lpc-p1343 => lm3s/lm3s3748-evb}/miniblink/README (59%) copy examples/{lpc13xx/lpc-p1343 => lm3s/lm3s3748-evb}/miniblink/miniblink.c (68%) copy examples/{lpc13xx/lpc-p1343 => lm3s/lm3s3748-evb}/miniblink/miniblink.ld (80%) create mode 100644 include/libopencm3/cm3/fpb.h create mode 100644 include/libopencm3/cm3/scs.h create mode 100644 include/libopencm3/stm32/dbgmcu.h copy lib/{lpc13xx => lm3s}/Makefile (96%) copy lib/{stm32/scb.c => lm3s/gpio.c} (69%) copy lib/{stm32/libopencm3_stm32.ld => lm3s/libopencm3_lm3s.ld} (93%) create mode 100644 lib/lm3s/vector.c hooks/post-receive -- libopenstm32 |