24 lines
717 B
C
24 lines
717 B
C
/***************************************************************************//**
|
|
* @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__
|