aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-02Merge branch 'master' into efm32chrysn
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-03-02efm32: energy management unit headers and examplechrysn
2012-03-02(efm32: remove todo that couldn't work out)chrysn
2012-02-29Corrected interrupt flag register defines.Piotr Esden-Tempski
2012-02-29Added dma_channel_reset prototype.Piotr Esden-Tempski
2012-03-01added efm32 lightswitch examplechrysn
2012-03-01convenience functions for efm32 gpiochrysn
also, the whole gpio header file is now a big doxygen group, structuring the convenience functions and the register/value definitions
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-29efm32 tinygecko gpio: implemented all the bit valueschrysn
along with the actual implementation comes a first attempt to better structure the doxygen groups. putting all the groups in a bigger one makes it easier to reference them from the file itself, and makes the structure clearer on the module page.
2012-02-28Added spi reset convenience function.Piotr Esden-Tempski
2012-02-27fixed a bug in efm32 miniblink examplechrysn
actually, it wasn't a bug; the compiler just optimized a statement away until it was declared volatile. inserting a no-op assembler instruction to make it more obvious what's going on
2012-02-27added upload target for segger's JLink toolchrysn
this is quite a hack, but the only way i know of by which firmware can be uploaded to the efm32tg-stk until OpenOCD supports SWD on jlink
2012-02-27efm32 example: enhanced makefileschrysn
2012-02-27make doxygen ignore __attribute__chrysn
doxygen doesn't understand __attribute__ and constructs bogus call graphs and dependencies from it. according to the doxygen maintainer[1], this is the way to deal with it. [1] http://sourceforge.net/mailarchive/message.php?msg_id=20085215
2012-02-27efm32: make all interrupts usable in vector tablechrysn
* define weak symbol for ${irq_name}_isr * put them in the rom vector table * declare reset_vector weak in case someone wants to insert code there * remove null_handler (null handlers should be only requested explicitly, and finding out why the chip gets stuck is easier than determining whether or not a no-op interrupt handler was executed)
2012-02-27efm32: minor documentation enhancementschrysn
2012-02-27efm32 tinygecko: defined interruptschrysn
there seems not to be anything family specific about the interrupt vectors of m3 based efm32 systems, thus renaming vector.h to irq.h
2012-02-27efm32: created memory map from all base addresseschrysn
2012-02-26make doxygen ignore .d fileschrysn
.d files are created to track Makefile dependencies and don't contain real code
2012-02-26overhauled documentationchrysn
includes minor refactoring in example code and modification of how the generic and the tinygecko specific vector.h go together (bringing it in line with stm32/f1's memorymap.h)
2012-02-25made blinking a led on efm32 possiblechrysn
this includes all register definitions for the gpu and mcu modules, but not all their bit definitions
2012-02-25first attempt at porting libopencm3 to energymicrochrysn
unless sources are explicitly given, the linker scripts and make files were copied over from the stm32/f1 port.
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-24Updated SCB_AIRCR_PRIGROUP bit definitions to be more consistent with the ↵Piotr Esden-Tempski
style the library.
2012-02-21Added fancyblink for lisa/m V2Piotr Esden-Tempski
2012-02-21Renamed current lisa-m tests to lisa-m-1 as it differs a bit from v2.Piotr Esden-Tempski
2012-02-13Added missing gpio definitions for timer 5.Piotr Esden-Tempski
2012-02-13Added combined gpio bank definitions to timers as you tend to set those up ↵Piotr Esden-Tempski
in bulk.
2012-02-13Forgot some BANK suffixes.Piotr Esden-Tempski
2012-02-13Added bank definitions to f1 gpio header.Piotr Esden-Tempski
2012-02-12Fix setting alternate port functions on the STM32F2.Gareth McMullin
Thanks to Ricardo Martins.
2012-02-12Linker scripts provide stack pointer at the top of RAM.Gareth McMullin
Thanks to Tomaz Solc.
2012-02-12Fix setting alternate port functions on the STM32F4.Gareth McMullin
Thanks to Ricardo Martins.
2012-02-12Add an interface for soft disconnection, and hook it up in the F107 driver.Mike Smith
2012-02-12Flash sector erase requires the FLASH_SER bit set.Mike Smith
2012-02-12F4 examples should build for F4, pass consistent arguments to the compiler ↵Mike Smith
and linker to ensure that compatible libraries are linked.
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-06f2/dma.h: Whitespace and coding-style fixes.Uwe Hermann
2012-02-06Fixed typo in F2 dma header to match the datasheet.Fergus Noble
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-06Cleaned up the jobygps examples.Fergus Noble
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++.