Markdowned README.md

This commit is contained in:
Enrico Jorns 2014-10-14 16:22:28 +02:00 committed by Frantisek Burian
parent 116462ca45
commit cd6b997a67

View File

@ -1,6 +1,5 @@
------------------------------------------------------------------------------
README README
------------------------------------------------------------------------------ ======
The libopencm3 project aims to create an open-source firmware library for The libopencm3 project aims to create an open-source firmware library for
various ARM Cortex-M3 microcontrollers. various ARM Cortex-M3 microcontrollers.
@ -26,11 +25,11 @@ Status and API
The libopencm3 project is currently work in progress. Not all subsystems The libopencm3 project is currently work in progress. Not all subsystems
of the microcontrollers are supported, yet. of the microcontrollers are supported, yet.
IMPORTANT: The API of the library is NOT yet considered stable! Please do **IMPORTANT**: The API of the library is _NOT_ yet considered stable! Please do
not rely on it, yet! Changes to function names, macro names etc. not rely on it, yet! Changes to function names, macro names etc.
can happen at any time without prior notice! can happen at any time without prior notice!
TIP: Include this repository as a GIT submodule in your project. To make sure _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. your users get the right version of the library to compile your project.
For how that can be done refer to the libopencm3-examples repository. For how that can be done refer to the libopencm3-examples repository.
@ -39,24 +38,28 @@ Prerequisites
Building requires python. (Some code is generated) Building requires python. (Some code is generated)
For Ubuntu/Fedora **For Ubuntu/Fedora:**
An arm-none-eabi/arm-elf toolchain.
- An arm-none-eabi/arm-elf toolchain.
**For Windows:**
For Windows
Download and install: Download and install:
msys - 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 - msys - http://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/msys-1.0.11/MSYS-1.0.11.exe
Run msys shell and set the path without standard Windows paths, so Windows programs such as 'find' won't interfere: - Python - http://www.python.org/ftp/python/2.7/python-2.7.msi (any 2.7 release)
export PATH="/c//Python27:/c/ARMToolchain/bin:/usr/local/bin:/usr/bin:/bin" - arm-none-eabi/arm-elf toolchain (for example this one https://launchpad.net/gcc-arm-embedded)
After that you can navigate to the folder where you've extracted libopencm3 and build it.
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 Toolchain
--------- ---------
The most heavily tested toolchain is gcc-arm-embedded The most heavily tested toolchain is "gcc-arm-embedded"
https://launchpad.net/gcc-arm-embedded https://launchpad.net/gcc-arm-embedded
Other toolchains _should_ work, but have not been nearly as well tested. Other toolchains _should_ work, but have not been nearly as well tested.
@ -66,16 +69,16 @@ _not_ appropriate.
Building Building
-------- --------
$ make $ make
If your have an arm-elf toolchain (uncommon) you may want to override the If your have an arm-elf toolchain (uncommon) you may want to override the
toolchain prefix (arm-none-eabi is the default) toolchain prefix (arm-none-eabi is the default)
$ PREFIX=arm-elf make $ PREFIX=arm-elf make
For a more verbose build you can use For a more verbose build you can use
$ make V=1 $ make V=1
Fine-tuning the build Fine-tuning the build
--------------------- ---------------------
@ -83,16 +86,18 @@ Fine-tuning the build
The build may be fine-tuned with a limited number of parameters, by specifying The build may be fine-tuned with a limited number of parameters, by specifying
them as environment variables, for example: them as environment variables, for example:
$ VARIABLE=value make $ VARIABLE=value make
* FP_FLAGS - Control the floating-point ABI * `FP_FLAGS` - Control the floating-point ABI
If the Cortex-M core supports a hard float ABI, it will be compiled with If the Cortex-M core supports a hard float ABI, it will be compiled with
floating-point support by default. In cases where this is not desired, the floating-point support by default. In cases where this is not desired, the
behavior can be specified by setting FP_FLAGS. Currently, M4F cores default behavior can be specified by setting `FP_FLAGS` Currently, M4F cores default
to "-mfloat-abi=hard -mfpu=fpv4-sp-d16" and others to no FP flags to `-mfloat-abi=hard -mfpu=fpv4-sp-d16` and others to no FP flags
Examples: Examples:
$ FP_FLAGS="-mfloat-abi=soft" make # No hardfloat
$ FP_FLAGS="-mfloat-abi=hard -mfpu=magic" make # New FPU we don't know of $ FP_FLAGS="-mfloat-abi=soft" make # No hardfloat
$ FP_FLAGS="-mfloat-abi=hard -mfpu=magic" make # New FPU we don't know of
Example projects Example projects
---------------- ----------------
@ -106,19 +111,19 @@ https://github.com/libopencm3/libopencm3-examples
Installation Installation
------------ ------------
$ make install $ make install
This will install the library into /usr/local. (permissions permitting) This will install the library into `/usr/local`. (permissions permitting)
If you want to install it elsewhere, use the following syntax: If you want to install it elsewhere, use the following syntax:
$ make DESTDIR=/opt/libopencm3 install $ make DESTDIR=/opt/libopencm3 install
It is strongly advised that you do not attempt to install this library to any 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 path inside your toolchain itself. While this means you don't have to include
any -I or -L flags in your projects, it is _very_ easy to confuse a multilib any `-I` or `-L` flags in your projects, it is _very_ easy to confuse a multilib
linker from picking the right versions of libraries. Common symptoms are linker from picking the right versions of libraries. Common symptoms are
hardfaults caused by branches into arm code. You can use arm-none-eabi-objdump hardfaults caused by branches into arm code. You can use `arm-none-eabi-objdump`
to check for this in your final elf. You have been warned. to check for this in your final elf. You have been warned.
@ -147,13 +152,13 @@ Mailing lists
* Developer mailing list (for patches and discussions): * Developer mailing list (for patches and discussions):
https://lists.sourceforge.net/lists/listinfo/libopencm3-devel https://lists.sourceforge.net/lists/listinfo/libopencm3-devel
* Commits mailing list (receives one mail per 'git push'): * Commits mailing list (receives one mail per `git push`):
https://lists.sourceforge.net/lists/listinfo/libopencm3-commits https://lists.sourceforge.net/lists/listinfo/libopencm3-commits
Website Website
------- -------
http://libopencm3.org * http://libopencm3.org
http://sourceforge.net/projects/libopencm3/ * http://sourceforge.net/projects/libopencm3/