/********************************************************************************* Copyright 2006-2008 MakingThings Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. *********************************************************************************/ /** @defgroup Libraries Libraries Libraries that extend core functionality. Libraries are modules of code that can be easily added/removed based on the needs of a particular project. This is a list of libraries maintained by MakingThings, but you're free to create your own. Just add a directory with your source files into the \b libraries directory of the firmware codebase. \section lib_in_project Incorporating a Library into your Project If you're using \b mcbuilder, just \b include the library you want to use. If you're building from a Makefile, there are a few extra steps: - add the library directory to your list of include directories (along with any sub-directories if not all the include files are in a single directory). - add each .c file of the library to your list of files to compile In the Makefiles in the example projects in the firmware download, you can see the \b THUMB_SRC and \b INCLUDEDIRS sections where you can add your own listings of both source files and include directories. */