aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-11-16Added UART4 and UART5 gpio definitions for stm32f1. Also corrected the ↵Piotr Esden-Tempski
naming everywhere. Both peripherals are UARTS not U_S_ARTS.
2011-11-17stm32/f1/gpio.c: Add some Doxygen comments.Uwe Hermann
2011-11-17usb: Fix some Doxygen comments.Uwe Hermann
2011-11-17usb: Coding-style fixes.Uwe Hermann
2011-11-17lib: More small fixes.Uwe Hermann
2011-11-17lib/stm32/f4: Coding-style fixes.Uwe Hermann
2011-11-17lib/stm32/f2: Coding-style fixes.Uwe Hermann
2011-11-17lib/stm32/f1: Coding-style fixes.Uwe Hermann
2011-11-17lib/stm32/*.c: Coding-style fixes.Uwe Hermann
2011-11-13examples: Even more coding-style fixes.Uwe Hermann
2011-11-13examples: Remove duplicate example linker scripts.Uwe Hermann
Only add one linker script per eval board, and have the Makefiles use that. This avoids duplication, and various copy-paste errors and left-overs which we already have in the tree. Some of the linker scripts are not really correct, yet. Both, the comments which say which board, chip, and RAM/ROM sizes are used, as well as the actual RAM/ROM size definitions are sometimes copy-pasted from other boards and are thus incorrect. This needs to be fixed.
2011-11-13other/*: Random coding-style fixes.Uwe Hermann
2011-11-13other/i2c_stts75_sensor: Cosmetics.Uwe Hermann
2011-11-12s/led/LED/.Uwe Hermann
2011-11-12obldc examples: Fix comments and coding-style.Uwe Hermann
2011-11-12other/dogm128: Coding-style fixes.Uwe Hermann
2011-11-12other/adc_temperature_sensor: Cosmetics.Uwe Hermann
2011-11-12other/dma2mem: Fix typos and coding-style.Uwe Hermann
2011-11-12mb525: Fix coding-style and comments.Uwe Hermann
2011-11-12lisa-m/usbhid: Use short types such as u8.Uwe Hermann
2011-11-12lisa-m/usbhid: Coding-style fixes.Uwe Hermann
2011-11-12lisa-m/usb_cdcacm: Coding-style/whitespace fixes.Uwe Hermann
2011-11-12lisa-m/fancyblink: Fix copy-pasted code comments.Uwe Hermann
2011-11-12lm3s: Cosmetics.Uwe Hermann
2011-11-12Only allow one packet in TX fifos.Gareth McMullin
This fixes a problem where packets were written too quickly. The hardware disabled the endpoint after the fist packet is sent, and others just waited in the queue.
2011-11-12Fixed loading of .data in linker scripts.Gareth McMullin
This fixes a problem where the linker included some padding bytes between the end of the .text section (_etext) and the start of the .data section. The C runtime copies from _etext, so all static initialised data was corrupted. This change forces the .data section to be written at _etext to avoid this problem.
2011-11-11stm32f4-discovery/miniblink: Fix board name typo.Uwe Hermann
2011-11-11stm32/dbgmcu.h: Document reserved bits, cosmetic fixes.Uwe Hermann
2011-11-11stm32/iwdg.h: Document reserved bits.Uwe Hermann
2011-11-11stm32/pwr.h: Document reserved bits.Uwe Hermann
2011-11-11stm32/wwdg.h: Document reserved bits, add WWDG_CFG_W.Uwe Hermann
2011-11-11stm32/fsmc.h: Document reserved bits.Uwe Hermann
2011-11-11stm32/fsmc.h: s/FSMC_PMEM_MEMHOLDX/FSMC_PMEM_MEMWAITX/.Uwe Hermann
This was a copy-paste error.
2011-11-11stm32/f4/pwr.h: Document reserved bits.Uwe Hermann
2011-11-11stm32/f2/pwr.h: Document reserved bits.Uwe Hermann
2011-11-11stm32/crc.h: Document reserved bits.Uwe Hermann
2011-11-11STM32F4: Fix typos, s/F2/F4/.Uwe Hermann
2011-11-11HACKING: Document the examples/ directory layout.Uwe Hermann
2011-11-11Makefile: Add 'doxy' target for doxygen docs.Uwe Hermann
A top-level 'make clean' will remove the whole doxygen/ output directory.
2011-11-11common.h: Add Doxygen main page text.Uwe Hermann
2011-11-11Doxyfile: Configure for libopencm3 needs.Uwe Hermann
2011-11-11Add auto-generated Doxygen config file.Uwe Hermann
2011-11-10stm32/spi.c: Coding style fixes and typo fixes.Uwe Hermann
2011-11-10stm32/spi.h: Fix typos, add comments.Uwe Hermann
2011-11-10STM32F2/F4: SPI fixes.Uwe Hermann
- Rename SPI_CR2_FRF_TI to SPI_CR2_FRF_TI_MODE to match datasheet. - Rename SPI_CR2_FRF_MOTOROLA to SPI_CR2_FRF_MOTOROLA_MODE (see above). - Fix SPI_CR2_FRF_MOTOROLA_MODE bit definition, must be (0 << 4). - Change SPI_SR_RXNE to SPI_SR_TIFRFE; this was probably a copy-paste error. Also, the bit definition is (1 << 8).
2011-11-10Cosmetic fixes in license headers.Uwe Hermann
2011-11-07Fix alignment issue in data sectionStephen Caudle
2011-11-03Makefile: Fix 'install' target.Uwe Hermann
Thanks to CheBuzz on IRC for pointing this out.
2011-11-02Add usart example for STM32F4 discovery boardStephen Caudle
2011-11-02Add USART6 definitions to STM32F3 & STM32F4Stephen Caudle