libopencm3/README.md

199 lines
6.8 KiB
Markdown
Raw Normal View History

2009-07-15 20:07:00 +00:00
README
2014-10-14 14:22:28 +00:00
======
[![Build Status](https://travis-ci.org/libopencm3/libopencm3.svg?branch=master)](https://travis-ci.org/libopencm3/libopencm3)
2009-07-15 20:07:00 +00:00
2015-12-15 16:38:33 +00:00
[![Gitter channel](https://badges.gitter.im/libopencm3/discuss.svg)](https://gitter.im/libopencm3/discuss)
2010-12-30 02:09:35 +00:00
The libopencm3 project aims to create an open-source firmware library for
various ARM Cortex-M microcontrollers.
2009-07-15 22:01:41 +00:00
2010-12-30 02:09:35 +00:00
Currently (at least partly) supported microcontrollers:
2019-11-28 22:25:36 +00:00
- ST STM32 F0xx/F1xx/F2xx/F30x/F37x/F4xx/F7xx/H7xx series
- ST STM32 G0xx G4xx L0xx L1xx L4xx series
- Atmel SAM3A/3N/3S/3U/3X series, as well as SAMDxx and friends
- NXP LPC1311/13/17/42/43
- Stellaris LM3S series (discontinued, without replacement)
- TI (Tiva) LM4F series (continuing as TM4F, pin and peripheral compatible)
- EFM32 Gecko series (only core support)
- Freescale Vybrid VF6xx
- Qorvo (formerly ActiveSemi) PAC55XX
- Synwit SWM050
2010-12-30 02:09:35 +00:00
The library is written completely from scratch based on the vendor datasheets,
programming manuals, and application notes. The code is meant to be used
with a GCC toolchain for ARM (arm-elf or arm-none-eabi), flashing of the
2010-12-30 02:09:35 +00:00
code to a microcontroller can be done using the OpenOCD ARM JTAG software.
Status and API
--------------
2010-12-30 02:09:35 +00:00
The libopencm3 project is currently work in progress. Not all subsystems
of the microcontrollers are supported, yet.
2014-10-14 14:22:28 +00:00
**IMPORTANT**: The API of the library is _NOT_ yet considered stable! Please do
2018-01-07 19:53:01 +00:00
not rely on it, yet! Changes to function names, macro names, etc.
can happen at any time without prior notice!
2009-07-15 22:01:41 +00:00
2018-01-07 19:53:01 +00:00
_TIP_: Include this repository as a Git submodule in your project to make sure
your users get the right version of the library to compile your project.
For how that can be done refer to the
[libopencm3-template](https://github.com/libopencm3/libopencm3-template) repository.
2013-01-23 21:21:27 +00:00
Prerequisites
-------------
Building requires Python (some code is generated).
2013-01-23 21:21:27 +00:00
2014-10-14 14:22:28 +00:00
**For Ubuntu/Fedora:**
- An arm-none-eabi/arm-elf toolchain.
**For Windows:**
Download and install:
2014-10-14 14:22:28 +00:00
- msys - http://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/msys-1.0.11/MSYS-1.0.11.exe
- Python - http://www.python.org/ftp/python/2.7/python-2.7.msi (any 2.7 release)
- arm-none-eabi/arm-elf toolchain (for example this one https://launchpad.net/gcc-arm-embedded)
Run msys shell and set the path without standard Windows paths, so Windows programs such as 'find' won't interfere:
export PATH="/c//Python27:/c/ARMToolchain/bin:/usr/local/bin:/usr/bin:/bin"
After that you can navigate to the folder where you've extracted libopencm3 and build it.
Toolchain
---------
2014-10-14 14:22:28 +00:00
The most heavily tested toolchain is "gcc-arm-embedded"
https://launchpad.net/gcc-arm-embedded
2018-01-07 19:53:01 +00:00
Other toolchains _should_ work, but they have not been nearly as well tested.
Toolchains targeting Linux, such as "gcc-arm-linux-gnu" or the like are
_not_ appropriate.
_NOTE_: We recommend that you use gcc-arm-embedded version 4.8 2014q3 or newer
2015-12-11 16:46:44 +00:00
to build all platforms covered by libopencm3 successfully.
2009-07-15 22:01:41 +00:00
Building
--------
2014-10-14 14:22:28 +00:00
$ make
2009-07-15 22:01:41 +00:00
2018-01-07 19:53:01 +00:00
If you have an arm-elf toolchain (uncommon) you may want to override the
toolchain prefix (arm-none-eabi is the default)
2014-10-14 14:22:28 +00:00
$ PREFIX=arm-elf make
2009-07-16 16:33:32 +00:00
For a more verbose build you can use
2014-10-14 14:22:28 +00:00
$ make V=1
2009-07-16 16:33:32 +00:00
Fine-tuning the build
---------------------
The build may be fine-tuned with a limited number of parameters, by specifying
them as environment variables, for example:
2014-10-14 14:22:28 +00:00
$ VARIABLE=value make
2014-10-14 14:22:28 +00:00
* `FP_FLAGS` - Control the floating-point ABI
If the Cortex-M core supports a hard float ABI, it will be compiled with
2018-01-07 19:53:01 +00:00
the best floating-point support by default. In cases where this is not desired, the
behavior can be specified by setting `FP_FLAGS`.
2018-01-07 19:53:01 +00:00
Currently, M4F cores default to `-mfloat-abi=hard -mfpu=fpv4-sp-d16`, and
M7 cores defaults to double precision `-mfloat-abi=hard -mfpu=fpv5-d16` if available,
and single precision `-mfloat-abi=hard -mfpu=fpv5-sp-d16` otherwise.
Other architectures use no FP flags, in otherwords, traditional softfp.
2018-01-07 19:53:01 +00:00
You may find which FP_FLAGS you can use in a particular architecture in the readme.txt
file shipped with the gcc-arm-embedded package.
2014-10-14 14:22:28 +00:00
Examples:
2014-10-14 14:22:28 +00:00
$ FP_FLAGS="-mfloat-abi=soft" make # No hardfloat
$ FP_FLAGS="-mfloat-abi=hard -mfpu=magic" make # New FPU we don't know of
2009-07-15 22:01:41 +00:00
* `CFLAGS` - Add to or supersede compiler flags
If the library needs to be compiled with additional flags, they can be
passed to the build system via the environment variable `CFLAGS`. The
contents of `CFLAGS` will be placed after all flags defined by the build
system, giving the user a way to override any default if necessary.
Examples:
2018-01-07 19:53:01 +00:00
$ CFLAGS="-fshort-wchar" make # Compile lib with 2 byte wide wchar_t
Example projects
----------------
The libopencm3 community has written and is maintaining a huge collection of
examples, displaying the capabilities and uses of the library. You can find all
of them in the libopencm3-examples repository:
https://github.com/libopencm3/libopencm3-examples
If you just wish to test your toolchain and build environment, a collection of
mini blink projects is available too. This covers _many_ more boards, but, as
the name suggests, only demonstrates blinking LEDs.
https://github.com/libopencm3/libopencm3-miniblink
2009-07-15 22:01:41 +00:00
Installation
------------
Simply pass -I and -L flags to your own project. See the
[libopencm3-template](https://github.com/libopencm3/libopencm3-template)
repository for a template repository using this library as a Git submodule,
the most popular method of use. The libopencm3-examples is another
example of this.
2010-12-31 17:29:15 +00:00
It is strongly advised that you do not attempt to install this library to any
path inside your toolchain itself. While this means you don't have to include
2018-01-07 19:53:01 +00:00
any `-I` or `-L` flags in your projects, it is _very_ easy to confuse a multi-library
linker from picking the right versions of libraries. Common symptoms are
2018-01-07 19:53:01 +00:00
hardfaults caused by branches into ARM code. You can use `arm-none-eabi-objdump`
to check for this in your final ELF file. You have been warned.
2009-07-15 22:01:41 +00:00
Coding style and development guidelines
---------------------------------------
2009-07-15 22:01:41 +00:00
See HACKING.
2009-07-15 22:01:41 +00:00
License
-------
The libopencm3 code is released under the terms of the GNU Lesser General
Public License (LGPL), version 3 or later.
2009-07-15 22:01:41 +00:00
See COPYING.GPL3 and COPYING.LGPL3 for details.
2009-07-15 22:01:41 +00:00
2015-12-15 16:38:33 +00:00
Community
---------
2015-12-15 16:38:33 +00:00
* Our [![Gitter channel](https://badges.gitter.im/libopencm3/discuss.svg)](https://gitter.im/libopencm3/discuss)
* Our IRC channel on the freenode IRC network is called #libopencm3
2009-07-15 22:01:41 +00:00
Mailing lists
-------------
* Developer mailing list (for patches and discussions):
https://lists.sourceforge.net/lists/listinfo/libopencm3-devel
2009-07-15 22:01:41 +00:00
2014-10-14 14:22:28 +00:00
* Commits mailing list (receives one mail per `git push`):
https://lists.sourceforge.net/lists/listinfo/libopencm3-commits
2009-07-15 22:01:41 +00:00
Website
-------
2014-10-14 14:22:28 +00:00
* http://libopencm3.org
2010-03-05 22:38:11 +00:00