Commit Graph

95 Commits

Author SHA1 Message Date
Piotr Esden-Tempski
ae17f5a77b [stm32f429i-discovery] Added miniblink example. 2015-01-14 18:15:53 -08:00
Piotr Esden-Tempski
a0d379f460 [stm32f429i-discovery] Added usbmidi example.
This board connects the USB HS interface to the micro usb connector as
opposed to the USB FS interface on the stm32f4-discovery board. This is
why we are using different pins, different periph and different driver.
At the end it should(TM) behave the same as the HS interface implements
FS too.
2015-01-14 16:50:44 -08:00
Piotr Esden-Tempski
e8694d561f [stm32f429i-discovery] Added fancyblink example.
For some reason when setting the ram size to 256 in the linker file we
are getting a memory access error. Needs more investigation.
2015-01-14 16:21:56 -08:00
Daniel Thompson
75389c665d stm32f4: usb_midi: Introduce example MIDI firmware
Tested on STM32F4Discovery with Linux host using both amidi (raw
messages to/from device) and a synthesizer (note on/off) and on
Windows 7 using MIDI-OX.
2014-12-18 22:51:06 +00:00
Karl Palsson
1215603031 update lib to latest, and fix for changes
rcc_core_frequency -> rcc_ahb_frequency
2014-12-18 22:08:34 +00:00
Karl Palsson
1b2f9db18f stm32:l0: miniblink example
Very basic, as all miniblinks.
2014-12-04 13:10:15 +00:00
Nikolay Merinov
2372d8b59f stm32/l1: lcd: example using the LCD 2014-10-07 22:30:20 +00:00
Karl Palsson
9852282bcf stm32f4: drop dead code from usb example.
Presumably code that attempted to toggle a led, but it wasn't setup, and it's
not in any other examples.  Kill it for now.

Reported-by: stefanct on irc.
2014-08-21 23:56:34 +00:00
Frantisek Burian
7f215cb6fa Use libopencm3 coding style 2014-07-14 13:44:44 +02:00
Frantisek Burian
bc5d0816e5 MSC: Use another PID to load correct drivers 2014-07-14 13:44:43 +02:00
Pavol Rusnak
7c07ed97a6 example for MSC (Mass Storage Class) support 2014-07-14 13:44:43 +02:00
Karl Palsson
4aaae0086a stm32f4: Document which discovery board the examples are for
Try and reduce a little confusion if we can.
2014-07-11 13:13:17 +00:00
Karl Palsson
05d46ab6cd make V=1 no longer spews linker garbage collection
make V=99 will, if you realllly want it.
2014-04-05 13:14:56 +00:00
Karl Palsson
6960d2adef stm32l1: correct misleading comments
Even though we eventually want to replace some of these magic defines with
board info files, let's still have correct comments.
2014-04-05 13:12:36 +00:00
Frantisek Burian
dd320a6e99 [STYLE] Revert the 'const' warning in cdcacm examples.
Examples are now compilable without warnings.
2014-03-23 21:20:41 +01:00
Karl Palsson
64ecb61543 f0: remove toolchain specific options
While nano specs are certainly handy, it should be documented how to use them,
not turned on by default.  People with otherwise valid toolchains, who might
simply not care about nano specs are unable to build the examples with these
options.
2014-03-08 15:03:36 +00:00
Frantisek Burian
8ffaf0579d Fix the bug in compilation in the style fix run. 2014-02-13 20:24:22 +01:00
Uwe Bonnes
06208be477 Whitespace changes in the tiva(stellaris/lpc directory structure commit 2014-02-13 20:04:34 +01:00
Uwe Bonnes
1740fee230 tiva(stellaris)/lpc: Use directory structure as stm32
EDIT: Whitespace changes to the files stripped out.
2014-02-13 20:00:25 +01:00
Frantisek Burian
3af1f8d43d [BUILD] Make the binaries only needed for the user
User can specify which binaries he needs on the commandline.

'make hex' will build examples with generating hex file
'make hex bin' will build hex and bin output
'make images' will build all images as in previous versions of buildsystem
'make all' or 'make' will build only elf (+ map) files

This will have huge impact on build speed.
2014-02-13 19:35:18 +01:00
Frantisek Burian
3f47411e24 [Stylecheck] F0, F1, F4
There are remaining C99 comments.
2014-02-13 19:15:24 +01:00
Frantisek Burian
022cc475bf [DOC] Updated README's for F0 and F4 examples to describe the needed board connections. 2014-02-13 19:15:00 +01:00
Frantisek Burian
a265fd4d64 Correct include path in all examples 2014-02-13 19:15:00 +01:00
Frantisek Burian
5bb4d47aae Examples updated to use new rcc_periph_clock_enable function 2014-02-13 19:14:59 +01:00
Karl Palsson
3f68a5ceef stm32l: Correct openocd flash target name 2014-02-13 12:00:03 +00:00
Karl Palsson
d1cf776ebc [lm4f] Remove usb cdc definitions moved to library
Requires a library bump to match
2014-01-22 20:28:32 +00:00
Frantisek Burian
5f592615d6 [BUILD] Correct inplace build for examples 2014-01-22 12:50:38 +01:00
Ken Sarkies
523401097a [STM32F4] DAC triggered by timer and DMA transfers. 2014-01-17 11:36:37 +00:00
Frantisek Burian
1b98ef8bfc Add stylecheck to the examples directory 2014-01-11 13:42:15 +01:00
Frantisek Burian
ffe9376c55 [BUILD] Allow to override FP_FLAGS in make as specified in libopencm3 README 2014-01-09 07:33:11 +01:00
Frantisek Burian
94ddb178eb [BUILD] Use the automatic variable RM=rm -f 2014-01-06 22:30:32 +01:00
Frantisek Burian
52fc38b03e [FIX] Library paths and preprocessor defines should be in CPPFLAGS, Reorganization of *FLAGS
Using:
http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#Warning-Options
http://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html#Preprocessor-Options
http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html#Link-Options
http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html#ARM-Options

To CFLAGS are added only -ffunction-sections -fdata-sections, so this should not break the build.
2014-01-06 22:30:31 +01:00
Frantisek Burian
04d4bac5af [BUILD] Move out ARCH_FLAGS from the LDFLAGS and CFLAGS, CXXFLAGS 2014-01-06 22:30:19 +01:00
Frantisek Burian
39f6c9eb5f [FIX] Correct the compilation of C++ files (prepared for the future) 2014-01-06 22:27:29 +01:00
Frantisek Burian
f756c99a42 [BUILD] Removed TOOLCHAIN_DIR, add autodetection of current libopencm3 library placement 2014-01-06 22:25:57 +01:00
Frantisek Burian
5385b463fe [FLASH:OPENOCD] Fixed the flashing function 2014-01-06 22:25:56 +01:00
Frantisek Burian
95fe484c42 Modify all of the examples to use the Makefile.rules 2014-01-06 22:25:56 +01:00
Onno Kortmann
58e84a9438 [BUILD] Generate *.MAP files
Reworked by: Frantisek Burian <BuFran@seznam.cz>
2014-01-06 22:25:55 +01:00
Frantisek Burian
02c35eee70 Make the STM32 Makefile.includes usable from outside the examples tree (Issue #28) 2014-01-06 22:25:55 +01:00
Frantisek Burian
9934e40fe9 [BUILD] Add generic Makefile.rules 2014-01-06 22:25:40 +01:00
Karl Palsson
04c92b6677 stm32f4: adc-dac-printf example
This is the same behaviour as the f1 and l1 examples of this code, making it
easier to test changes to unification of the adc code.
2014-01-04 00:13:34 +00:00
Karl Palsson
cc800be89a linker script paths: don't hardcode the path
While some of the examples include a "board.ld" style file, some of them were
pointing to the libopencm3 provided chip specific ld scripts.  When
TOOLCHAIN_DIR has been overridden, those paths were no longer valid/correct.
2014-01-03 21:54:34 +00:00
Frantisek Burian
72c1a29779 Correct the F3 examples hardfaults in rare cases, correct style 2014-01-03 00:18:41 +01:00
Onno Kortmann
3efd9f8675 Make the STM32 Makefile.includes usable from outside the examples tree
The Makefile.includes contain a hardcoded ../../../../../libopencm3
path for the TOOLCHAIN_DIR variable. They also contained another copy
of this hardcoded path, that is now generated from $TOOLCHAIN_DIR.

This allows to have a symbolic link to a Makefile.include in an
out-of-tree project and reuse the Makefile infrastructure.
2014-01-03 00:08:01 +01:00
Leigh Brown
c0791cd4a7 lm3s: add LM3S811 eval board miniblink example
The LM3S811-EVB miniblink example is a copy of the LM3S3748-EVB miniblink
example.  Modifications:

 - rename lm3s3748-evb.ld to lm3s811-evb.ld and change RAM and ROM sizes
 - amend Makefile to reference the lm3s811-evb.ld linker script
 - amend miniblink.c to use PC5 instead of PF0 for the LED GPIO
 - amend README to reference LM3S811-EVB instead of LM3S3748-EVB
2014-01-02 23:55:08 +01:00
Joshua Harlan Lifton
4505fa1926 Add USB<->serial loopback example to WaveShare Open103R 2014-01-02 23:38:53 +01:00
Joshua Harlan Lifton
eeb900d800 Fix typo 2014-01-02 23:38:53 +01:00
Joshua Harlan Lifton
b59c0a9e05 Add joystick example to WaveShare Open103R 2014-01-02 23:38:53 +01:00
Joshua Harlan Lifton
d944c0cba6 Port fancyblink example to WaveShare Open103R 2014-01-02 23:38:53 +01:00
Joshua Harlan Lifton
c672f1b329 Port button example to WaveShare Open103R 2014-01-02 23:38:52 +01:00