aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-01-27Added output compare channel convenience functions and adapted the pwm_6step ↵Piotr Esden-Tempski
example accordingly.
2011-01-27Started a pwm 6step output example. Enabled timer convenience functions and ↵Piotr Esden-Tempski
some minor fixes that showed themselves while writing the bare bone example.
2011-01-13Changed button and exti tests to use floating input as pullup is not needed.Piotr Esden-Tempski
2011-01-13Added a simple exti test using rising and falling trigger instead of ↵Piotr Esden-Tempski
sampling the gpio pin to determine the current state of the pin.
2011-01-13Renamed exti test to exti_both as it uses TRIGGER_BOTH mode and sampling the ↵Piotr Esden-Tempski
gpio pin to determine the state of the pin.
2011-01-13Added basic exti interrupt test.Piotr Esden-Tempski
2011-01-13Added a simple input test using the button on STM32-H103 eval board.Piotr Esden-Tempski
2011-01-07EXTI bugfix in exti_select_source().Uwe Hermann
AFIO_EXTICR[1 to 4] registers were not beeing set correctly. You have to force a 0 on the bits that are 0 for the mutex to work. Thanks Linus Casassa <linus@lin.cl> for the patch!
2011-01-03Use __asm__("nop") in the loop-based delays.Uwe Hermann
Since we recently switched from -O0 to -Os, an increase in the loop count as well as the addition of __asm__("nop") is required (so that the loop doesn't get optimized/removed). The real fix is to add a proper timer-based delay function, of course. Also, fix a bunch of cosmetic issues and typos.
2011-01-02Ported pwmleds (pwm timer output test) to obldc.Piotr Esden-Tempski
2010-12-31Add some summon-arm-toolchain hints.Uwe Hermann
2010-12-31Some more file/path restructuring.Uwe Hermann
All #includes now explicitly use the "<libopencm3/stm32/rcc.h>" format. If you want to get rid of the "libopencm3" prefix in your local project you can add a respective -I entry in your Makefile (not recommended though). All .ld files and .a libs are installed in $(TOOLCHAIN_DIR)/lib directly (as before), but are now renamed to avoid potential conflicts now or in the future. Examples: libopencm3_lpc13xx.a libopencm3_lpc13xx.ld libopencm3_stm32.a libopencm3_stm32.ld
2010-12-31Rename include guards to LIBOPENCM3_*.Uwe Hermann
2010-12-31Add FSMC register definitions.Uwe Hermann
2010-12-31FSMC: Implement all missing bit defines.Uwe Hermann
2010-12-30Start adding FSMC #defines (FSMC_BCRx for now).Uwe Hermann
2010-12-30Remove useless .gitignore entry.Uwe Hermann
2010-12-30Cosmetics: Fix build output paths.Uwe Hermann
2010-12-30Some more LD paths fixes.Uwe Hermann
2010-12-30Adapt 'make install' to new structure.Uwe Hermann
2010-12-30More libopenstm32 renames.Uwe Hermann
2010-12-30More renames for libopenstm32 -> libopencm3.Uwe Hermann
2010-12-30Finish libopenstm32.ld to stm32.ld rename.Uwe Hermann
2010-12-30s/libopenstm32/libopencm3/ is some Makefiles.Uwe Hermann
2010-12-30Change some names to libopencm3.Uwe Hermann
2010-12-30Drop unused and useless libopenstm32.h.Uwe Hermann
2010-12-30More path and name changes.Uwe Hermann
2010-12-30Add missing files.Uwe Hermann
2010-12-30Rename include/libopenstm32 to include/stm32.Uwe Hermann
2010-12-30Move STM32-specific source to lib/stm32 subdir.Uwe Hermann
2010-12-30Move STM32 examples to examples/stm32 subdir.Uwe Hermann
2010-12-30Add initial lpc-p1343/miniblink example (untested).Uwe Hermann
This is not yet tested on hardware, it probably won't work, yet.
2010-12-30NXP LPC13XX: Initial memorymap.h and gpio.h.Uwe Hermann
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.
2010-12-30Factor out cm3/common.h and cm3/memorymap.h.Uwe Hermann
2010-12-29Deduplicate example README file contents.Uwe Hermann
2010-12-29Some more whitespace + cosmetics.Uwe Hermann
2010-12-29USB: Cosmetics and coding-style fixes.Uwe Hermann
2010-12-29Replace uint8_t with u8 et al, fix whitespace.Uwe Hermann
2010-12-29Install USB headers upon 'make install'.Uwe Hermann
2010-12-29Move generic USB stuff to a subdir, dedupe .h files.Uwe Hermann
Adapt examples and the lib code accordingly.
2010-12-29More whitespace fixes.Uwe Hermann
2010-12-29Whitespace fixes.Uwe Hermann
2010-12-29Make the build/clean targets a bit less verbose.Uwe Hermann
2010-12-29Drop Paparazzi-specific stuff, deduplicate Makefiles.Uwe Hermann
2010-12-29Merge branch 'martinmm'.Uwe Hermann
2010-12-29Implemented a uart example that is using irq for receive and transmit.Piotr Esden-Tempski
2010-12-29Improved usart api implementation to be more readable.Piotr Esden-Tempski
2010-12-29stm32-h103/Makefile: Fix usb_cdcacm build.Uwe Hermann
2010-12-29other/usb_hid: Small fixes in the README.Uwe Hermann
2010-12-27Added gc-sections. Now unused functions are being garbage collected.Piotr Esden-Tempski