Skip to content
Snippets Groups Projects
Verified Commit 51d40ee1 authored by rahix's avatar rahix
Browse files

fix(docs): Fix a docs-build warning


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 98fe0411
No related branches found
No related tags found
No related merge requests found
Pipeline #4124 passed
......@@ -4,14 +4,15 @@
#include <stdint.h>
#ifndef __SPHINX_DOC
/* stddef.h is not recognized by hawkmoth for some odd reason */
/* Some headers are not recognized by hawkmoth for some odd reason */
#include <stddef.h>
#else
typedef unsigned int size_t;
#endif /* __SPHINX_DOC */
#include "FreeRTOS.h"
#include "queue.h"
#else
typedef unsigned int size_t;
typedef void *QueueHandle_t;
#endif /* __SPHINX_DOC */
/* Time to wait for the descriptor table lock to become available */
#define STREAM_MUTEX_WAIT pdMS_TO_TICKS(100)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment