2013-11-27 16:28:31 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Freie Universität Berlin
|
|
|
|
*
|
2014-08-23 15:43:13 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2013-11-27 16:28:31 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-11-27 17:54:30 +01:00
|
|
|
* @defgroup sys System
|
|
|
|
* @brief System library contains tools and utilities that make RIOT an actual operating system
|
2013-11-27 16:28:31 +01:00
|
|
|
*/
|
2016-12-04 11:04:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup sys_ssp Stack Smashing Protector
|
|
|
|
* @ingroup sys
|
|
|
|
* @brief Stack Smashing protector
|
|
|
|
*
|
|
|
|
* This module implements necessary helper functions that enable RIOT to make
|
|
|
|
* use of GCC's stack smashing protector (SSP).
|
|
|
|
*
|
|
|
|
* See http://wiki.osdev.org/Stack_Smashing_Protector for a more detailed
|
|
|
|
* description.
|
|
|
|
*/
|
2018-08-24 17:50:37 +02:00
|
|
|
|
2023-02-27 15:06:58 +01:00
|
|
|
/**
|
|
|
|
* @defgroup sys_compression Data Compression Libraries
|
|
|
|
* @ingroup sys
|
|
|
|
* @brief Provides compression libraries and utilities for RIOT
|
|
|
|
*/
|
|
|
|
|
2018-08-24 17:50:37 +02:00
|
|
|
/**
|
|
|
|
* @defgroup sys_math Math libraries and utilities
|
|
|
|
* @ingroup sys
|
|
|
|
* @brief Provides math libraries and utilities for RIOT
|
|
|
|
*/
|
2018-08-30 13:29:00 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup sys_memory_management Memory management
|
|
|
|
* @ingroup sys
|
|
|
|
* @brief Provides memory management implementations and utilities
|
|
|
|
*/
|
2018-08-24 13:56:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup sys_serialization Serialization
|
|
|
|
* @ingroup sys
|
|
|
|
* @brief Utilities for data serialization
|
|
|
|
*/
|
2019-04-12 14:12:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup net_lorawan LoRaWAN
|
|
|
|
* @ingroup net
|
|
|
|
* @brief Provides utilities and helpers for LoRaWAN packets
|
|
|
|
*/
|