aboutsummaryrefslogtreecommitdiff
path: root/lib/stm32
AgeCommit message (Collapse)Author
2012-04-08Added convenience funcions for timer input capture filter and prescaler.Gareth McMullin
2012-04-07Corrected parameters of timer_set_mode() to u32.Gareth McMullin
2012-03-19Constand value for resetting CAN_TDTxR was too big. Fixed.Piotr Esden-Tempski
2012-03-19Changed parameter size for trigger enable.Piotr Esden-Tempski
2012-03-19Started some cleanup in the ADC headers and convenience code.Piotr Esden-Tempski
2012-03-18Added basic exception handling to the stm32 linker scripts. Thanks Mike Smith!Piotr Esden-Tempski
2012-03-14Made spi_init_master ignore CRC and SPE bits.Piotr Esden-Tempski
2012-03-02Some additional LGPL3+ license change cleanups.Piotr Esden-Tempski
Changed the license to LGPL3+ for some makefiles that got ommited in the previous big patch commit. Corrected a find and replace error in a linker file.
2012-03-02License change of the library to LGPL, version 3 or later.Piotr Esden-Tempski
Agreed to by all the significant contributors to the library.
2012-02-29Cleaned up and streamlined DMA support for f1. Definitely needs a bunch of ↵Piotr Esden-Tempski
testing!
2012-02-29Fixed spi convenience reset function to compile properly.Piotr Esden-Tempski
2012-02-28Added spi reset convenience function.Piotr Esden-Tempski
2012-02-24Added reset function to i2c convenience functions.Piotr Esden-Tempski
2012-02-24Added set priority group convenience function.Piotr Esden-Tempski
2012-02-12Linker scripts provide stack pointer at the top of RAM.Gareth McMullin
Thanks to Tomaz Solc.
2012-02-12Flash sector erase requires the FLASH_SER bit set.Mike Smith
2012-02-11Added the entry point definiton to all stm32 linker scripts. This allows gdb ↵Piotr Esden-Tempski
to reset the target correctly on exit.
2012-02-06More coding-style and cosmetic fixes.Uwe Hermann
2012-02-06Fix numerous bugs in NVIC convenience functions, doing an |= on a clear ↵Fergus Noble
register will clear ALL currently enabled irqs, not just the one you specified and other things of that sort. Also changed to support the full range of irq numbers supported by ARMv7M, not just the first 68 used in the STM32F1 series.
2012-02-06Added functions to enable and disable DMA from stm32 USART.Fergus Noble
2012-02-06Change stm32 usart baud rate generation to round rather than floor for more ↵Fergus Noble
accurate divisor selection.
2012-02-06Fix nasty bug with GPIO alternate function setup on F2/F4 (sorry guys).Fergus Noble
2012-02-06Fix bug with F4 clock settings, change HPRE to PPRE.Fergus Noble
2012-02-06Discard .ARM.exidx section to make newlib 64bit (long long) printf support ↵Fergus Noble
work. This may need to be fixed if using C++.
2012-02-06Fixing small bug/typo in F2 rcc code.Fergus Noble
2011-12-17Added USB example for stm32f4.Gareth McMullin
Moved clock enable for OTG_FS back into applications. This and gpio config are the only differences between f107 and f2xx/f4xx.
2011-11-16Reverted the api of the usart_set_baudrate function to hide the clock rail ↵Piotr Esden-Tempski
selection again.
2011-11-16Added address legend to the interrupt vector. Made it easier to crosscheck ↵Piotr Esden-Tempski
for correctness.
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-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-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-10stm32/spi.c: Coding style fixes and typo fixes.Uwe Hermann
2011-11-07Fix alignment issue in data sectionStephen Caudle
2011-11-02Add timer support for STM32F2 & STM32F4Stephen Caudle
2011-11-02Fix APB1 & APB2 frequencies in STM32F4 RCC tableStephen Caudle
2011-11-02Add pwr to STM32F4 makefileStephen Caudle
2011-10-31Add initial support for STM32F4Stephen Caudle
2011-10-31Add generic STM32F2 RCC clock functionStephen Caudle
2011-10-30Fix stm32f2 RCC PLL values for 120MHzStephen Caudle
2011-10-30Add SCB from stm32f1Stephen Caudle
2011-10-30Update makefiles to reflect stm32 lib folder name changesStephen Caudle
2011-10-30Rename stm32 lib folders to be consistent with includeStephen Caudle
2011-10-12Renaming lib code for stm32 f1 series. Fergus Noble
2011-10-04Switched all makefiles to arm-none-eabi default.Piotr Esden-Tempski
2011-04-28Merge remote-tracking branch 'gsmcmullin/master'.Uwe Hermann