/***************************************************************************//** * @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 >>> // Circular Queue Configuration // Max Queue Length // <0-256:1> // Default: 5 #ifndef CIRCULAR_QUEUE_LEN_MAX #define CIRCULAR_QUEUE_LEN_MAX 16 #endif // // <<< end of configuration section >>> #endif // __CIRCULAR_QUEUE_CONFIG_H__