aboutsummaryrefslogtreecommitdiff
path: root/examples/lpc13xx
AgeCommit message (Collapse)Author
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.
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-30Some more LD paths fixes.Uwe Hermann
2010-12-30More libopenstm32 renames.Uwe Hermann
2010-12-30More renames for libopenstm32 -> libopencm3.Uwe Hermann
2010-12-30s/libopenstm32/libopencm3/ is some Makefiles.Uwe Hermann
2010-12-30Change some names to libopencm3.Uwe Hermann
2010-12-30More path and name changes.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.