Fixed licensing issues.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13948 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
ed2a59ef29
commit
3b35b42bf9
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
ChibiOS - Copyright (C) 2006..2020 Ilya Kharin
|
ChibiOS - Copyright (C) 2006..2020 Giovanni Di Sirio
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System time counter resolution.
|
* @brief System time counter resolution.
|
||||||
* @note Allowed values are 16 or 32 bits.
|
* @note Allowed values are 16, 32 or 64 bits.
|
||||||
*/
|
*/
|
||||||
#if !defined(CH_CFG_ST_RESOLUTION)
|
#if !defined(CH_CFG_ST_RESOLUTION)
|
||||||
#define CH_CFG_ST_RESOLUTION 32
|
#define CH_CFG_ST_RESOLUTION 32
|
||||||
|
@ -638,11 +638,11 @@
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System structure extension.
|
* @brief OS instance structure extension.
|
||||||
* @details User fields added to the end of the @p ch_system_t structure.
|
* @details User fields added to the end of the @p ch_system_t structure.
|
||||||
*/
|
*/
|
||||||
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
||||||
/* Add threads custom fields here.*/
|
/* Add OS instance custom fields here.*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief OS instance initialization hook.
|
* @brief OS instance initialization hook.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
ChibiOS - Copyright (C) 2006..2020 Ilya Kharin
|
ChibiOS - Copyright (C) 2006..2020 Giovanni Di Sirio
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System time counter resolution.
|
* @brief System time counter resolution.
|
||||||
* @note Allowed values are 16 or 32 bits.
|
* @note Allowed values are 16, 32 or 64 bits.
|
||||||
*/
|
*/
|
||||||
#if !defined(CH_CFG_ST_RESOLUTION)
|
#if !defined(CH_CFG_ST_RESOLUTION)
|
||||||
#define CH_CFG_ST_RESOLUTION 32
|
#define CH_CFG_ST_RESOLUTION 32
|
||||||
|
@ -638,11 +638,11 @@
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System structure extension.
|
* @brief OS instance structure extension.
|
||||||
* @details User fields added to the end of the @p ch_system_t structure.
|
* @details User fields added to the end of the @p ch_system_t structure.
|
||||||
*/
|
*/
|
||||||
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
||||||
/* Add threads custom fields here.*/
|
/* Add OS instance custom fields here.*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief OS instance initialization hook.
|
* @brief OS instance initialization hook.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
ChibiOS - Copyright (C) 2006..2020 Ilya Kharin
|
ChibiOS - Copyright (C) 2006..2020 Giovanni Di Sirio
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System time counter resolution.
|
* @brief System time counter resolution.
|
||||||
* @note Allowed values are 16 or 32 bits.
|
* @note Allowed values are 16, 32 or 64 bits.
|
||||||
*/
|
*/
|
||||||
#if !defined(CH_CFG_ST_RESOLUTION)
|
#if !defined(CH_CFG_ST_RESOLUTION)
|
||||||
#define CH_CFG_ST_RESOLUTION 32
|
#define CH_CFG_ST_RESOLUTION 32
|
||||||
|
@ -160,16 +160,6 @@
|
||||||
#define CH_CFG_USE_TM TRUE
|
#define CH_CFG_USE_TM TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Threads registry APIs.
|
|
||||||
* @details If enabled then the registry APIs are included in the kernel.
|
|
||||||
*
|
|
||||||
* @note The default is @p TRUE.
|
|
||||||
*/
|
|
||||||
#if !defined(CH_CFG_USE_REGISTRY)
|
|
||||||
#define CH_CFG_USE_REGISTRY TRUE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Time Stamps APIs.
|
* @brief Time Stamps APIs.
|
||||||
* @details If enabled then the time time stamps APIs are included in
|
* @details If enabled then the time time stamps APIs are included in
|
||||||
|
@ -181,6 +171,16 @@
|
||||||
#define CH_CFG_USE_TIMESTAMP TRUE
|
#define CH_CFG_USE_TIMESTAMP TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads registry APIs.
|
||||||
|
* @details If enabled then the registry APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_CFG_USE_REGISTRY)
|
||||||
|
#define CH_CFG_USE_REGISTRY TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Threads synchronization APIs.
|
* @brief Threads synchronization APIs.
|
||||||
* @details If enabled then the @p chThdWait() function is included in
|
* @details If enabled then the @p chThdWait() function is included in
|
||||||
|
@ -638,11 +638,11 @@
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System structure extension.
|
* @brief OS instance structure extension.
|
||||||
* @details User fields added to the end of the @p ch_system_t structure.
|
* @details User fields added to the end of the @p ch_system_t structure.
|
||||||
*/
|
*/
|
||||||
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
||||||
/* Add threads custom fields here.*/
|
/* Add OS instance custom fields here.*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief OS instance initialization hook.
|
* @brief OS instance initialization hook.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
ChibiOS - Copyright (C) 2006..2020 Ilya Kharin
|
ChibiOS - Copyright (C) 2006..2020 Giovanni Di Sirio
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System time counter resolution.
|
* @brief System time counter resolution.
|
||||||
* @note Allowed values are 16 or 32 bits.
|
* @note Allowed values are 16, 32 or 64 bits.
|
||||||
*/
|
*/
|
||||||
#if !defined(CH_CFG_ST_RESOLUTION)
|
#if !defined(CH_CFG_ST_RESOLUTION)
|
||||||
#define CH_CFG_ST_RESOLUTION 32
|
#define CH_CFG_ST_RESOLUTION 32
|
||||||
|
@ -638,11 +638,11 @@
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System structure extension.
|
* @brief OS instance structure extension.
|
||||||
* @details User fields added to the end of the @p ch_system_t structure.
|
* @details User fields added to the end of the @p ch_system_t structure.
|
||||||
*/
|
*/
|
||||||
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
||||||
/* Add threads custom fields here.*/
|
/* Add OS instance custom fields here.*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief OS instance initialization hook.
|
* @brief OS instance initialization hook.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
ChibiOS - Copyright (C) 2006..2020 Ilya Kharin
|
ChibiOS - Copyright (C) 2006..2020 Giovanni Di Sirio
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System time counter resolution.
|
* @brief System time counter resolution.
|
||||||
* @note Allowed values are 16 or 32 bits.
|
* @note Allowed values are 16, 32 or 64 bits.
|
||||||
*/
|
*/
|
||||||
#if !defined(CH_CFG_ST_RESOLUTION)
|
#if !defined(CH_CFG_ST_RESOLUTION)
|
||||||
#define CH_CFG_ST_RESOLUTION 32
|
#define CH_CFG_ST_RESOLUTION 32
|
||||||
|
@ -638,11 +638,11 @@
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System structure extension.
|
* @brief OS instance structure extension.
|
||||||
* @details User fields added to the end of the @p ch_system_t structure.
|
* @details User fields added to the end of the @p ch_system_t structure.
|
||||||
*/
|
*/
|
||||||
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
||||||
/* Add threads custom fields here.*/
|
/* Add OS instance custom fields here.*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief OS instance initialization hook.
|
* @brief OS instance initialization hook.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
ChibiOS - Copyright (C) 2006..2020 Ilya Kharin
|
ChibiOS - Copyright (C) 2006..2020 Giovanni Di Sirio
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System time counter resolution.
|
* @brief System time counter resolution.
|
||||||
* @note Allowed values are 16 or 32 bits.
|
* @note Allowed values are 16, 32 or 64 bits.
|
||||||
*/
|
*/
|
||||||
#if !defined(CH_CFG_ST_RESOLUTION)
|
#if !defined(CH_CFG_ST_RESOLUTION)
|
||||||
#define CH_CFG_ST_RESOLUTION 32
|
#define CH_CFG_ST_RESOLUTION 32
|
||||||
|
@ -160,16 +160,6 @@
|
||||||
#define CH_CFG_USE_TM TRUE
|
#define CH_CFG_USE_TM TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Threads registry APIs.
|
|
||||||
* @details If enabled then the registry APIs are included in the kernel.
|
|
||||||
*
|
|
||||||
* @note The default is @p TRUE.
|
|
||||||
*/
|
|
||||||
#if !defined(CH_CFG_USE_REGISTRY)
|
|
||||||
#define CH_CFG_USE_REGISTRY TRUE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Time Stamps APIs.
|
* @brief Time Stamps APIs.
|
||||||
* @details If enabled then the time time stamps APIs are included in
|
* @details If enabled then the time time stamps APIs are included in
|
||||||
|
@ -181,6 +171,16 @@
|
||||||
#define CH_CFG_USE_TIMESTAMP TRUE
|
#define CH_CFG_USE_TIMESTAMP TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads registry APIs.
|
||||||
|
* @details If enabled then the registry APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_CFG_USE_REGISTRY)
|
||||||
|
#define CH_CFG_USE_REGISTRY TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Threads synchronization APIs.
|
* @brief Threads synchronization APIs.
|
||||||
* @details If enabled then the @p chThdWait() function is included in
|
* @details If enabled then the @p chThdWait() function is included in
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
ChibiOS - Copyright (C) 2006..2020 Ilya Kharin
|
ChibiOS - Copyright (C) 2006..2020 Giovanni Di Sirio
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System time counter resolution.
|
* @brief System time counter resolution.
|
||||||
* @note Allowed values are 16 or 32 bits.
|
* @note Allowed values are 16, 32 or 64 bits.
|
||||||
*/
|
*/
|
||||||
#if !defined(CH_CFG_ST_RESOLUTION)
|
#if !defined(CH_CFG_ST_RESOLUTION)
|
||||||
#define CH_CFG_ST_RESOLUTION 32
|
#define CH_CFG_ST_RESOLUTION 32
|
||||||
|
@ -160,16 +160,6 @@
|
||||||
#define CH_CFG_USE_TM TRUE
|
#define CH_CFG_USE_TM TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Threads registry APIs.
|
|
||||||
* @details If enabled then the registry APIs are included in the kernel.
|
|
||||||
*
|
|
||||||
* @note The default is @p TRUE.
|
|
||||||
*/
|
|
||||||
#if !defined(CH_CFG_USE_REGISTRY)
|
|
||||||
#define CH_CFG_USE_REGISTRY TRUE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Time Stamps APIs.
|
* @brief Time Stamps APIs.
|
||||||
* @details If enabled then the time time stamps APIs are included in
|
* @details If enabled then the time time stamps APIs are included in
|
||||||
|
@ -181,6 +171,16 @@
|
||||||
#define CH_CFG_USE_TIMESTAMP TRUE
|
#define CH_CFG_USE_TIMESTAMP TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads registry APIs.
|
||||||
|
* @details If enabled then the registry APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_CFG_USE_REGISTRY)
|
||||||
|
#define CH_CFG_USE_REGISTRY TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Threads synchronization APIs.
|
* @brief Threads synchronization APIs.
|
||||||
* @details If enabled then the @p chThdWait() function is included in
|
* @details If enabled then the @p chThdWait() function is included in
|
||||||
|
@ -638,7 +638,7 @@
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief System structure extension.
|
* @brief OS instance structure extension.
|
||||||
* @details User fields added to the end of the @p ch_system_t structure.
|
* @details User fields added to the end of the @p ch_system_t structure.
|
||||||
*/
|
*/
|
||||||
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
#define CH_CFG_OS_INSTANCE_EXTRA_FIELDS \
|
||||||
|
|
Loading…
Reference in New Issue