[libopenstm32-commits] libopenstm32 branch, master, updated. 11b366b27dc26900bf1b6f737e465049ad9fad
Status: Inactive
Brought to you by:
uh1763
From: Uwe H. <uh...@us...> - 2010-05-02 23:34: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 11b366b27dc26900bf1b6f737e465049ad9fad18 (commit) via c249c7f772d0108800ac39a9abbacf75825814db (commit) via ffcf53ef00389aca1b2420ee40fb80b809570046 (commit) via 4f272b4ad4c89bef659bd253616129d2cab2c6bd (commit) via 8dc36291d13c2aed73593edd7b38490817ed208d (commit) via a104b63ea912c9b58a5196b296d63956b37d82db (commit) from 4ae25c865b9e9b3ad03aec6e588f1bbcdbb0f620 (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 11b366b27dc26900bf1b6f737e465049ad9fad18 Author: Thomas Otto <to...@vi...> Date: Sun May 2 21:08:00 2010 +0200 Corrected IWDG_BASE calculations. commit c249c7f772d0108800ac39a9abbacf75825814db Author: Thomas Otto <to...@vi...> Date: Sun May 2 21:03:15 2010 +0200 Added initial IWDG definitions. commit ffcf53ef00389aca1b2420ee40fb80b809570046 Author: Thomas Otto <to...@vi...> Date: Sun May 2 20:28:51 2010 +0200 Make examples/other make use of new clock setup. commit 4f272b4ad4c89bef659bd253616129d2cab2c6bd Author: Thomas Otto <to...@vi...> Date: Sun May 2 20:20:04 2010 +0200 Added rcc clock setup function for 16mhz crystal. commit 8dc36291d13c2aed73593edd7b38490817ed208d Author: Thomas Otto <to...@vi...> Date: Sun May 2 15:56:48 2010 +0200 Fixed channel group setting with more then 6 items. commit a104b63ea912c9b58a5196b296d63956b37d82db Author: Thomas Otto <to...@vi...> Date: Sun May 2 14:44:31 2010 +0200 Added DOGM128 LCD display example (SPI). ----------------------------------------------------------------------- Summary of changes: examples/other/Makefile | 10 +- examples/other/adc_temperature_sensor/adc.c | 43 +--- examples/other/dma_mem2mem/dma.c | 43 +--- examples/other/{dma_mem2mem => dogm128}/Makefile | 4 +- examples/other/{systick => dogm128}/README | 5 +- examples/other/dogm128/dogm128.c | 291 ++++++++++++++++++++ examples/other/dogm128/dogm128.h | 86 ++++++ examples/other/dogm128/main.c | 110 ++++++++ .../adc.ld => dogm128/main.ld} | 0 .../other/i2c_stts75_sensor/i2c_stts75_sensor.c | 8 +- examples/other/systick/systick.c | 43 +--- examples/other/timer_interrupt/timer.c | 44 +--- include/libopenstm32.h | 1 + include/libopenstm32/iwdg.h | 75 +++++ include/libopenstm32/rcc.h | 1 + lib/adc.c | 4 +- lib/rcc.c | 41 +++ 17 files changed, 624 insertions(+), 185 deletions(-) copy examples/other/{dma_mem2mem => dogm128}/Makefile (98%) copy examples/other/{systick => dogm128}/README (84%) create mode 100644 examples/other/dogm128/dogm128.c create mode 100644 examples/other/dogm128/dogm128.h create mode 100644 examples/other/dogm128/main.c copy examples/other/{adc_temperature_sensor/adc.ld => dogm128/main.ld} (100%) create mode 100644 include/libopenstm32/iwdg.h hooks/post-receive -- libopenstm32 |