[libopenstm32-commits] libopenstm32 branch, master, updated. b65f3f06d061823fac1af91594e0d702b4c806
Status: Inactive
Brought to you by:
uh1763
From: Uwe H. <uh...@us...> - 2010-12-30 00:37:51
|
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 b65f3f06d061823fac1af91594e0d702b4c80693 (commit) via b385b7a17243f278dd2023d60e2a73cf9c089b13 (commit) via 17b2e87ba3ba3cc029a92f275f110e17249d59f7 (commit) from 01bfbfed411f9e96218070e2b36438b783df29ba (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 b65f3f06d061823fac1af91594e0d702b4c80693 Author: Uwe Hermann <uw...@he...> Date: Thu Dec 30 01:36:16 2010 +0100 Add initial lpc-p1343/miniblink example (untested). This is not yet tested on hardware, it probably won't work, yet. commit b385b7a17243f278dd2023d60e2a73cf9c089b13 Author: Uwe Hermann <uw...@he...> Date: Thu Dec 30 00:59:45 2010 +0100 NXP LPC13XX: Initial memorymap.h and gpio.h. Add initial support for the NXP LPC13XX family of ARM Cortex-M3 devices, including the LPC1311, LPC1313, LPC1342, or LPC1343. This should re-use parts of our generic Cortex-M3 stuff (which is gradually moved into cm3/ subdirs) where possible. commit 17b2e87ba3ba3cc029a92f275f110e17249d59f7 Author: Uwe Hermann <uw...@he...> Date: Thu Dec 30 00:53:52 2010 +0100 Factor out cm3/common.h and cm3/memorymap.h. ----------------------------------------------------------------------- Summary of changes: HACKING | 2 +- .../spi => lpc13xx/lpc-p1343/miniblink}/Makefile | 4 +- .../lpc-p1343}/miniblink/README | 6 +- .../lpc-p1343/miniblink/miniblink.c} | 28 ++---- .../lpc-p1343/miniblink/miniblink.ld} | 8 +- examples/other/dogm128/dogm128.h | 2 +- include/{libopenstm32 => cm3}/common.h | 4 +- include/cm3/memorymap.h | 58 +++++++++++ include/libopenstm32.h | 2 +- include/libopenstm32/adc.h | 2 +- include/libopenstm32/bkp.h | 2 +- include/libopenstm32/can.h | 2 +- include/libopenstm32/crc.h | 2 +- include/libopenstm32/dma.h | 2 +- include/libopenstm32/ethernet.h | 2 +- include/libopenstm32/exti.h | 2 +- include/libopenstm32/flash.h | 2 +- include/libopenstm32/gpio.h | 2 +- include/libopenstm32/i2c.h | 2 +- include/libopenstm32/iwdg.h | 2 +- include/libopenstm32/memorymap.h | 35 +------- include/libopenstm32/nvic.h | 2 +- include/libopenstm32/pwr.h | 2 +- include/libopenstm32/rcc.h | 2 +- include/libopenstm32/rtc.h | 2 +- include/libopenstm32/scb.h | 2 +- include/libopenstm32/spi.h | 2 +- include/libopenstm32/systick.h | 2 +- include/libopenstm32/timer.h | 2 +- include/libopenstm32/usart.h | 2 +- include/libopenstm32/usb.h | 2 +- include/libopenstm32/wwdg.h | 2 +- include/lpc13xx/gpio.h | 100 ++++++++++++++++++++ include/lpc13xx/memorymap.h | 58 +++++++++++ include/usb/usbstd.h | 2 +- lib/usb/usb_f103.c | 2 +- 36 files changed, 267 insertions(+), 88 deletions(-) copy examples/{stm32-h103/spi => lpc13xx/lpc-p1343/miniblink}/Makefile (93%) copy examples/{stm32-h103 => lpc13xx/lpc-p1343}/miniblink/README (59%) copy examples/{stm32-h103/spi/spi.c => lpc13xx/lpc-p1343/miniblink/miniblink.c} (69%) copy examples/{stm32-h103/spi/spi.ld => lpc13xx/lpc-p1343/miniblink/miniblink.ld} (79%) rename include/{libopenstm32 => cm3}/common.h (95%) create mode 100644 include/cm3/memorymap.h create mode 100644 include/lpc13xx/gpio.h create mode 100644 include/lpc13xx/memorymap.h hooks/post-receive -- libopenstm32 |