summaryrefslogtreecommitdiffstats
path: root/c-user (follow)
Commit message (Collapse)AuthorAgeFilesLines
* c-user: Clarify CONFIGURE_TICKS_PER_TIMESLICESebastian Huber8 days1-1/+1
| | | | Close #4986.
* c-user: CONFIGURE_JFFS2_DELAYED_WRITE_TASK_PRIORITYSebastian Huber2023-12-191-1/+36
| | | | | | Document CONFIGURE_JFFS2_DELAYED_WRITE_TASK_PRIORITY. Update #4961.
* glossary: Add termsSebastian Huber2023-12-191-0/+54
|
* Add Regulator documentation based on V1 functionalityJoel Sherrill2023-08-097-0/+846
|
* c-user: Clarify global constructionSebastian Huber2023-07-281-10/+15
|
* c-user: Link task entry and global constructionSebastian Huber2023-07-256-7/+29
|
* c-user: Add glossary terms for SPARC targetsSebastian Huber2023-07-201-0/+30
|
* c-user: Fix typoSebastian Huber2023-07-201-1/+1
| | | | Updates #4772.
* c-user: Update copyright and use glossary termsSebastian Huber2023-07-202-4/+4
| | | | Updates #4772.
* c-user: Update references to rtems_task_wake_afterKinsey Moore2023-07-064-20/+25
| | | | | | | | | | rtems_task_wake_after takes a parameter in terms of a count of clock ticks and not a measure in a subunit of seconds. This updates documentation to reflect that. This also makes obvious the caveat about the first tick wait not being a whole tick and points the user at a replacement for better accuracy. Updates #4772
* Update company nameSebastian Huber2023-05-2091-91/+91
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* c-user: Generate API type documentationSebastian Huber2023-05-0919-320/+1729
| | | | Close #4901.
* c-user/smp: Fix item renderingKinsey Moore2023-03-281-1/+1
|
* c-user/chains: Correct iteration example codeKinsey Moore2023-03-091-2/+3
| | | | | | | | Casting the node returned by rtems_chain_head is incorrect. That node is owned by the control structure and use of it post-cast could cause memory corruption. Instead, use rtems_chain_first which returns the node after the head node. This also corrects node->next to rtems_chain_next(node) which makes better use of the API.
* c-user: Use configuration option referencesSebastian Huber2023-02-141-31/+32
|
* c-user: Document CONFIGURE_INITSebastian Huber2023-02-142-2/+38
|
* c-user: Fix header file pathSebastian Huber2023-02-141-2/+3
|
* c-user: Harmonize header file referencesSebastian Huber2023-02-143-10/+10
|
* c-user: Remove obsolete config sectionSebastian Huber2023-02-142-356/+0
| | | | | | | | | | | | This commit already clarified that the defines of the removed section are optional BSP provided default values and not application configuration options: commit cf9f2121577b11f8eab5e49c48173c46cf09c627 Author: Sebastian Huber <sebastian.huber@embedded-brains.de> Date: Wed Nov 17 08:46:56 2021 +0100 c-user: Clarify BSP related configuration settings
* c-user/message/directives.rst: byes->bytes typoMartin Erik Werner2023-01-231-1/+1
|
* c-user/rate-monotonic/background.rst: Correct logically inverted statementJoel Sherrill2023-01-131-5/+6
| | | | | | Also corrected a spot of formatting. Closes #4781.
* c-user: Add Local vs Global to Key Concepts ChapterJoel Sherrill2022-12-071-8/+68
| | | | | | | Add multiple new index entries and cite them where RTEMS_LOCAL and RTEMS_GLOBAL are cited. Closes #4453.
* Document CONFIGURE_RECORD_INTERRUPTS_ENABLEDSebastian Huber2022-12-021-1/+42
| | | | Close #4769.
* c-user/*: Add trailing parentheses on methods in index which were missing itJoel Sherrill2022-11-3011-71/+71
| | | | Closes #4766.
* c-user: Adjust URL for struct timespecSebastian Huber2022-11-081-5/+4
|
* c-user/clock: Fix typoMatt Joyce2022-11-081-1/+1
|
* c-user: INTERNAL_ERROR_IDLE_THREAD_STACK_TOO_SMALLSebastian Huber2022-10-141-0/+7
| | | | Document this fatal error.
* c-user: INTERNAL_ERROR_NO_MEMORY_FOR_IDLE_TASK_STORAGESebastian Huber2022-10-141-0/+5
| | | | Document this fatal error.
* c-user: INTERNAL_ERROR_IDLE_THREAD_CREATE_FAILEDSebastian Huber2022-10-141-0/+5
| | | | Document this fatal error.
* c-user: Add CONFIGURE_IDLE_TASK_STORAGE_SIZESebastian Huber2022-10-142-11/+101
|
* c-user: Fix referencesSebastian Huber2022-10-061-10/+5
|
* c-user: INTERNAL_ERROR_RTEMS_INIT_TASK_CONSTRUCT_FAILEDSebastian Huber2022-10-061-3/+8
| | | | Document this fatal error.
* c-user: CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZESebastian Huber2022-10-062-63/+63
| | | | | Move CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZE to the general configuration options.
* c-user: Add application config info directivesSebastian Huber2022-10-0413-96/+1832
| | | | | Close #4267. Close #4269.
* c-user: Add types to macrosSebastian Huber2022-10-044-22/+44
|
* c-user: Add type rolesSebastian Huber2022-09-291-6/+6
|
* c-user/config/face.rst: New file -- add CONFIGURE_POSIX_TIMERS_FACE_BEHAVIORJoel Sherrill2022-09-052-0/+77
| | | | Closes #4691.
* c-user: Clarify BSP related configuration settingsSebastian Huber2022-08-313-9/+76
|
* c-user: Update OAR copyright and reformatSebastian Huber2022-08-113-14/+10
| | | | These files are generated by a script.
* c-user: Document new rtems_task_delete() behaviourSebastian Huber2022-07-281-5/+20
| | | | Update #4679.
* c-user: Document task life statesSebastian Huber2022-07-281-1/+53
| | | | Update #4679.
* c-user: Do not mention pseudo-interrupt prioritySebastian Huber2022-07-262-3/+4
| | | | Update #2365.
* c-user: Update references to --enable-* configure options.Joel Sherrill2022-05-204-30/+44
| | | | | Also updated list of SMP architectures and added enough lead in to let users know the source code was the definitive answer.
* c-user: Clarify scheduler of created taskSebastian Huber2022-03-301-3/+3
|
* c-user: Improve interrupt set affinity handlingSebastian Huber2022-03-162-2/+7
| | | | Update #3269.
* c-user: Document CONFIGURE_SCHEDULER_TABLE_ENTRIESSebastian Huber2022-02-221-3/+90
| | | | Update #4524.
* c-user: Use document internal linksSebastian Huber2022-01-111-10/+12
|
* c-user: Clarify Clock Manager dependenciesSebastian Huber2022-01-111-8/+16
| | | | Update #4572.
* c-user: Clarify time formatsSebastian Huber2021-12-161-12/+27
| | | | Update #4572.
* c-user: Fix Clock Manager parameter descriptionsSebastian Huber2021-12-161-17/+21
| | | | Update #4572.