mirror of
https://github.com/MaJerle/lwmem.git
synced 2025-01-13 21:42:53 +08:00
Applying new .gitignore
This commit is contained in:
parent
b885a0c065
commit
bd1ee1f9d3
1
.gitignore
vendored
1
.gitignore
vendored
@ -23,6 +23,7 @@
|
|||||||
*.__i
|
*.__i
|
||||||
*.i
|
*.i
|
||||||
*.txt
|
*.txt
|
||||||
|
!docs/*.txt
|
||||||
RTE/
|
RTE/
|
||||||
|
|
||||||
# IAR Settings
|
# IAR Settings
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
LwMEM documentation!
|
LwMEM documentation!
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
LwMEM is lightweight dynamic memory manager optimized for embedded systems.
|
||||||
|
|
||||||
.. image:: static/images/logo.svg
|
.. image:: static/images/logo.svg
|
||||||
:align: center
|
:align: center
|
||||||
|
|
||||||
@ -11,22 +13,21 @@ LwMEM documentation!
|
|||||||
Features
|
Features
|
||||||
^^^^^^^^
|
^^^^^^^^
|
||||||
|
|
||||||
- Written in ANSI C99, compatible with ``size_t`` for size data types
|
* Written in ANSI C99, compatible with size_t for size data types
|
||||||
- Platform independent, no architecture specific code
|
* Implements standard C library functions for memory allocation, malloc, calloc, realloc and free
|
||||||
- FIFO (First In First Out) buffer implementation
|
* Uses first-fit algorithm to search free block
|
||||||
- No dynamic memory allocation, data is static array
|
* Supports different memory regions to allow use of fragmented memories
|
||||||
- Uses optimized memory copy instead of loops to read/write data from/to memory
|
* Suitable for embedded applications with fragmented memories
|
||||||
- Thread safe when used as pipe with single write and single read entries
|
* Suitable for automotive applications
|
||||||
- Interrupt safe when used as pipe with single write and single read entries
|
* Supports advanced free/realloc algorithms to optimize memory usage
|
||||||
- Suitable for DMA transfers from and to memory with zero-copy overhead between buffer and application memory
|
* Operating system ready, thread-safe API
|
||||||
- Supports data peek, skip for read and advance for write
|
* User friendly MIT license
|
||||||
- User friendly MIT license
|
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
^^^^^^^^^^^^
|
^^^^^^^^^^^^
|
||||||
|
|
||||||
- C compiler
|
* C compiler
|
||||||
- Less than ``2kB`` of memory
|
* Less than ``2kB`` of memory
|
||||||
|
|
||||||
Contribute
|
Contribute
|
||||||
^^^^^^^^^^
|
^^^^^^^^^^
|
||||||
|
21
docs/license.txt
Normal file
21
docs/license.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Copyright (c) 2019 Tilen MAJERLE
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person
|
||||||
|
obtaining a copy of this software and associated documentation
|
||||||
|
files (the "Software"), to deal in the Software without restriction,
|
||||||
|
including without limitation the rights to use, copy, modify, merge,
|
||||||
|
publish, distribute, sublicense, and/or sell copies of the Software,
|
||||||
|
and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
7
docs/requirements.txt
Normal file
7
docs/requirements.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
breathe>=4.9.1
|
||||||
|
colorama
|
||||||
|
docutils>=0.14
|
||||||
|
sphinx>=2.0.1
|
||||||
|
sphinx_rtd_theme
|
||||||
|
sphinx-tabs
|
||||||
|
sphinxcontrib-svg2pdfconverter
|
Loading…
x
Reference in New Issue
Block a user