<feed xmlns='http://www.w3.org/2005/Atom'>
<title>feurig/libmaplemidi-cma/libmaple/stm32.h, branch master</title>
<subtitle>C and C++ library for STM32 ARM Cortex-M3 development boards.</subtitle>
<id>https://git.suspectdevices.com/feurig/libmaplemidi-cma/atom?h=master</id>
<link rel='self' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/'/>
<updated>2012-04-11T20:56:50+00:00</updated>
<entry>
<title>Move public headers to include directories; related cleanups.</title>
<updated>2012-04-11T20:56:50+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-11-15T17:45:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=954f9e5065b39fe4c683f4d216b54326d876f51b'/>
<id>urn:sha1:954f9e5065b39fe4c683f4d216b54326d876f51b</id>
<content type='text'>
Move libmaple/*.h to (new) libmaple/include/libmaple/. The new
accepted way to include a libmaple header foo.h is with:

    #include &lt;libmaple/foo.h&gt;

This is more polite in terms of the include namespace. It also allows
us to e.g. implement the Arduino SPI library at all (which has header
SPI.h; providing it was previously impossible on case-insensitive
filesystems due to libmaple's spi.h).

Similarly for Wirish.

The old include style (#include "header.h") is now deprecated.

libmaple/*.h:

- Change include guard #defines from _FOO_H_ to _LIBMAPLE_FOO_H_.
- Add license headers where they're missing
- Add conditional extern "C" { ... } blocks where they're missing
  (they aren't always necessary, but we might was well do it against
  the future, while we're at it.).
- Change includes from #include "foo.h" to #include &lt;libmaple/foo.h&gt;.
- Move includes after extern "C".
- Remove extra trailing newlines

Note that this doesn't include the headers under libmaple/usb/ or
libmaple/usb/usb_lib. These will get fixed later.

libmaple/*.c:

- Change includes from #include "foo.h" to #include &lt;libmaple/foo.h&gt;.

Makefile:

- Add I$(LIBMAPLE_PATH)/include/libmaple to GLOBAL_FLAGS.  This allows
  for users (including Wirish) to migrate their code, but should go
  away ASAP, since it slows down compilation.

Wirish:

- Move wirish/**/*.h to (new) wirish/include/wirish/.  This ignores
  the USB headers, which, as usual, are getting handled after
  everything else.

- Similarly generify wirish/boards/ structure. For each supported
  board "foo", move wirish/boards/foo.h and wirish/boards/foo.cpp to
  wirish/boards/foo/include/board/board.h and
  wirish/boards/foo/board.cpp, respectively. Also remove the #ifdef
  hacks around the .cpp files.

- wirish/rules.mk: put wirish/boards/foo/include in the include path
  (and add wirish/boards/foo/board.cpp to the list of sources to be
  compiled). This allows saying:

      #include &lt;board/board.h&gt;

  instead of the hack currently in place. We can allow the user to
  override this setting later to make adding custom board definitions
  easier.

- Disable -Werror in libmaple/rules.mk, as the current USB warnings
  don't let the olimex_stm32_h103 board compile. We can re-enable
  -Werror once we've moved the board-specific bits out of libmaple
  proper.

libraries, examples:

- Update includes accordingly.
- Miscellaneous cosmetic fixups.

Signed-off-by: Marti Bolivar &lt;mbolivar@leaflabs.com&gt;
</content>
</entry>
<entry>
<title>stm32.h: Add STM32_SRAM_END.</title>
<updated>2011-09-08T03:34:24+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-09-07T20:16:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=aa4f3b6645a17c98aa4679323208ed8636ba89b1'/>
<id>urn:sha1:aa4f3b6645a17c98aa4679323208ed8636ba89b1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stm32.h: Remove SRAM_SIZE, prefix all #defines.</title>
<updated>2011-09-08T03:34:23+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-09-07T20:04:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=53f804e335b82b74bab1cd49e11235046b15a2a3'/>
<id>urn:sha1:53f804e335b82b74bab1cd49e11235046b15a2a3</id>
<content type='text'>
Remove SRAM_SIZE define.  This seems like a bad idea given that
bootloader builds drop user code at an offset from the SRAM start
address.

Prefix every #define with "STM32_" to avoid polluting the namespace.
Keep and deprecate the remaining ones (except for aforementioned
SRAM_SIZE), but define them to be the same as their prefixed variant.

Take a little extra care to break libmaple builds which specify PCLK1
and PCLK2 instead of the prefixed versions.  Some libmaple forks make
use of these; they will break in mysterious ways if they don't handle
this change properly.
</content>
</entry>
<entry>
<title>stm32.h: Doxygen tweaks.</title>
<updated>2011-08-30T05:11:33+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-08-30T05:11:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=075f073c2cf07d8cbadaee222acc65a71f7e75d8'/>
<id>urn:sha1:075f073c2cf07d8cbadaee222acc65a71f7e75d8</id>
<content type='text'>
For some unfathomable reason, Doxygen happily believes in PCLK2, but
but not PCLK1, so Breathe can't find the docs for PCLK1, and all the
children are unhappy.  As a workaround, move all the Doxgyen crap into
__DOXYGEN_PREDEFINED_HACK sections immediately preceding the actual
definitions.
</content>
</entry>
<entry>
<title>stm32.h: Doxygen</title>
<updated>2011-08-23T03:29:59+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-08-23T02:38:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=bada156b62229153092eefc9486b58dd55c62c54'/>
<id>urn:sha1:bada156b62229153092eefc9486b58dd55c62c54</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stm32.h: Doxygen</title>
<updated>2011-08-23T03:29:59+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-08-23T02:10:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=1d337f535f04b0f4d907266e2653773846475baa'/>
<id>urn:sha1:1d337f535f04b0f4d907266e2653773846475baa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stm32.h: Add license header.</title>
<updated>2011-07-18T18:24:59+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-07-18T18:24:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=a6bd904db8a3dbf835edc7643f85d2f4e4a5fd68'/>
<id>urn:sha1:a6bd904db8a3dbf835edc7643f85d2f4e4a5fd68</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stm32.h: Trivial comment tweak.</title>
<updated>2011-07-18T18:24:33+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-07-18T18:24:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=3131e09e38e91b69235c522436859222b2900f92'/>
<id>urn:sha1:3131e09e38e91b69235c522436859222b2900f92</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add DELAY_US_MULT, for use in generalizing delay_us().</title>
<updated>2011-07-18T18:19:04+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-07-18T18:19:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=3061d3f6000e9663790fa7152df3d8210d274ae7'/>
<id>urn:sha1:3061d3f6000e9663790fa7152df3d8210d274ae7</id>
<content type='text'>
The delay_us() implementation multiplies its specified delay target by
a fixed constant in order to turn it into a busy-loop.  This magic
number doesn't work properly when the clock configuration isn't the
same as a stock LeafLabs board.  Add DELAY_US_MULT to the MCU-specific
configuration in stm32.h in order to allow other chips to use delay_us().
</content>
</entry>
<entry>
<title>Move STM32 config from libmaple.h into stm32.h.</title>
<updated>2011-07-18T18:07:17+00:00</updated>
<author>
<name>Marti Bolivar</name>
<email>mbolivar@leaflabs.com</email>
</author>
<published>2011-07-18T18:07:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/feurig/libmaplemidi-cma/commit/?id=9dde5488a4816842189a23d9d91c6cb44fbc80f9'/>
<id>urn:sha1:9dde5488a4816842189a23d9d91c6cb44fbc80f9</id>
<content type='text'>
</content>
</entry>
</feed>
