2020-01-03 15:02:05 +01:00
.. _getting_started:
2019-12-07 03:49:49 +01:00
2020-01-03 15:02:05 +01:00
Getting started
===============
2019-12-07 00:18:02 +01:00
2021-04-13 21:56:17 +02:00
Getting started may be the most challenging part of every new library.
This guide is describing how to start with the library quickly and effectively
2019-12-07 00:18:02 +01:00
.. _download_library:
Download library
^^^^^^^^^^^^^^^^
2019-12-07 00:41:27 +01:00
Library is primarly hosted on `Github <https://github.com/MaJerle/lwmem> `_ .
2019-12-07 00:18:02 +01:00
2022-02-16 20:19:28 +01:00
You can get it by:
2021-04-13 21:56:17 +02:00
* Downloading latest release from `releases area <https://github.com/MaJerle/lwmem/releases> `_ on Github
2022-02-16 20:19:28 +01:00
* Cloning `` main `` branch for latest stable version
2021-04-13 21:56:17 +02:00
* Cloning `` develop `` branch for latest development
2019-12-07 00:18:02 +01:00
Download from releases
***** ***** ***** ***** **
2019-12-12 21:32:31 +01:00
All releases are available on Github `releases area <https://github.com/MaJerle/lwmem/releases> `_ .
2019-12-07 00:18:02 +01:00
Clone from Github
***** ***** ***** **
First-time clone
""""""""""""""""
2021-04-13 21:56:17 +02:00
This is used when you do not have yet local copy on your machine.
* Make sure `` git `` is installed.
2019-12-07 00:18:02 +01:00
* Open console and navigate to path in the system to clone repository to. Use command `` cd your_path ``
2022-02-16 20:19:28 +01:00
* Clone repository with one of available options below
2019-12-07 20:26:43 +01:00
* Run `` git clone --recurse-submodules https://github.com/MaJerle/lwmem `` command to clone entire repository, including submodules
* Run `` git clone --recurse-submodules --branch develop https://github.com/MaJerle/lwmem `` to clone `development` branch, including submodules
2022-02-16 20:19:28 +01:00
* Run `` git clone --recurse-submodules --branch main https://github.com/MaJerle/lwmem `` to clone `latest stable` branch, including submodules
2019-12-07 20:26:43 +01:00
2019-12-07 00:18:02 +01:00
* Navigate to `` examples `` directory and run favourite example
Update cloned to latest version
"""""""""""""""""""""""""""""""
2021-12-24 20:11:19 +01:00
* Open console and navigate to path in the system where your repository is located. Use command `` cd your_path ``
2022-02-16 20:19:28 +01:00
* Run `` git pull origin main `` command to get latest changes on `` main `` branch
2021-12-24 20:11:19 +01:00
* Run `` git pull origin develop `` command to get latest changes on `` develop `` branch
* Run `` git submodule update --init --remote `` to update submodules to latest version
2019-12-07 00:18:02 +01:00
2019-12-07 20:26:43 +01:00
.. note ::
This is preferred option to use when you want to evaluate library and run prepared examples.
Repository consists of multiple submodules which can be automatically downloaded when cloning and pulling changes from root repository.
2019-12-07 00:18:02 +01:00
Add library to project
^^^^^^^^^^^^^^^^^^^^^^
2024-06-22 15:13:34 +02:00
At this point it is assumed that you have successfully download library, either with `` git clone `` command or with manual download from the library releases page.
2023-12-09 16:49:22 +01:00
Next step is to add the library to the project, by means of source files to compiler inputs and header files in search path.
*CMake* is the main supported build system. Package comes with the `` CMakeLists.txt `` and `` library.cmake `` files, both located in the `` lwmem `` directory:
2024-06-22 15:13:34 +02:00
* `` library.cmake `` : It is a fully configured set of variables and with library definition. User can include this file to the project file with `` include(path/to/library.cmake) `` and then manually use the variables provided by the file, such as list of source files, include paths or necessary compiler definitions. It is up to the user to properly use the this file on its own.
2024-06-22 19:27:00 +02:00
* `` CMakeLists.txt `` : It is a wrapper-only file and includes `` library.cmake `` file. It is used for when user wants to include the library to the main project by simply calling *CMake* `` add_subdirectory `` command, followed by `` target_link_libraries `` to link external library to the final project.
2023-12-09 16:49:22 +01:00
.. tip ::
2024-06-22 15:13:34 +02:00
Open `` library.cmake `` and analyze the provided information. Among variables, you can also find list of all possible exposed libraries for the user.
2023-12-09 16:49:22 +01:00
If you do not use the *CMake* , you can do the following:
2019-12-07 00:18:02 +01:00
2021-04-13 21:56:17 +02:00
* Copy `` lwmem `` folder to your project, it contains library files
* Add `` lwmem/src/include `` folder to `include path` of your toolchain. This is where `C/C++` compiler can find the files during compilation process. Usually using `` -I `` flag
2024-06-22 15:13:34 +02:00
* Add source files from `` lwmem/src/ `` folder to toolchain build. These files are built by `C/C++` compiler
2020-06-27 03:11:42 +02:00
* Copy `` lwmem/src/include/lwmem/lwmem_opts_template.h `` to project folder and rename it to `` lwmem_opts.h ``
2019-12-07 00:18:02 +01:00
* Build the project
2019-12-07 03:49:49 +01:00
Configuration file
^^^^^^^^^^^^^^^^^^
2019-12-07 00:18:02 +01:00
2021-04-13 21:56:17 +02:00
Configuration file is used to overwrite default settings defined for the essential use case.
2023-12-01 17:11:02 +01:00
Library comes with template config file, which can be modified according to the application needs.
2021-04-13 21:56:17 +02:00
and it should be copied (or simply renamed in-place) and named `` lwmem_opts.h ``
2020-07-09 23:00:08 +02:00
.. note ::
Default configuration template file location: `` lwmem/src/include/lwmem/lwmem_opts_template.h `` .
2021-04-13 21:56:17 +02:00
File must be renamed to `` lwmem_opts.h `` first and then copied to the project directory where compiler
2020-07-09 23:00:08 +02:00
include paths have access to it by using `` #include "lwmem_opts.h" `` .
2019-12-07 00:18:02 +01:00
2023-12-08 16:03:46 +01:00
.. tip ::
2024-03-19 21:34:24 +01:00
If you are using *CMake* build system, define the variable `` LWMEM_OPTS_FILE `` before adding library's directory to the *CMake* project.
2024-03-19 21:41:47 +01:00
Variable must contain the path to the user options file. If not provided and to avoid build error, one will be generated in the build directory.
2023-12-08 16:03:46 +01:00
Configuration options list is available available in the :ref: `api_lwmem_opt` section.
2021-04-13 21:56:17 +02:00
If any option is about to be modified, it should be done in configuration file
2019-12-07 00:41:27 +01:00
2020-06-27 03:11:42 +02:00
.. literalinclude :: ../../lwmem/src/include/lwmem/lwmem_opts_template.h
2019-12-07 03:49:49 +01:00
:language: c
2019-12-27 22:48:30 +01:00
:linenos:
2021-04-13 21:56:17 +02:00
:caption: Template configuration file
.. note ::
If you prefer to avoid using configuration file, application must define
a global symbol `` LWMEM_IGNORE_USER_OPTS `` , visible across entire application.
This can be achieved with `` -D `` compiler option.
2019-12-07 00:41:27 +01:00
2019-12-07 03:49:49 +01:00
Minimal example code
^^^^^^^^^^^^^^^^^^^^
2019-12-07 00:41:27 +01:00
2021-04-13 21:56:17 +02:00
To verify proper library setup, minimal example has been prepared.
Run it in your main application file to verify its proper execution
2019-12-07 00:41:27 +01:00
2019-12-07 20:26:43 +01:00
.. literalinclude :: ../examples_src/example_minimal.c
2019-12-23 11:15:18 +01:00
:language: c
2019-12-27 22:48:30 +01:00
:linenos:
2019-12-23 11:15:18 +01:00
:caption: Absolute minimum example