Imported more library files

Not compiling currently
This commit is contained in:
2025-04-12 23:37:19 +01:00
parent 264a3462e0
commit 9d06f983af
2518 changed files with 1021900 additions and 52 deletions

View File

@@ -0,0 +1,23 @@
/***************************************************************************//**
* @file circular_queue_config.h
* @brief Configuration file for circular queue.
* @copyright Copyright 2015 Silicon Laboratories, Inc. www.silabs.com
******************************************************************************/
#ifndef __CIRCULAR_QUEUE_CONFIG_H__
#define __CIRCULAR_QUEUE_CONFIG_H__
// <<< Use Configuration Wizard in Context Menu >>>
// <h> Circular Queue Configuration
// <o CIRCULAR_QUEUE_LEN_MAX> Max Queue Length
// <0-256:1>
// <i> Default: 5
#ifndef CIRCULAR_QUEUE_LEN_MAX
#define CIRCULAR_QUEUE_LEN_MAX 16
#endif
// </h>
// <<< end of configuration section >>>
#endif // __CIRCULAR_QUEUE_CONFIG_H__