mbed library

Dependents:   Printf

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Fri Sep 12 16:41:52 2014 +0100
Revision:
89:552587b429a1
Release 89 of the mbed library

Main changes:

- low power optimizations for Nordic targets
- code structure changes for Freescale K64F targets
- bug fixes in various backends

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 89:552587b429a1 1 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
bogdanm 89:552587b429a1 2 *
bogdanm 89:552587b429a1 3 * The information contained herein is property of Nordic Semiconductor ASA.
bogdanm 89:552587b429a1 4 * Terms and conditions of usage are described in detail in NORDIC
bogdanm 89:552587b429a1 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
bogdanm 89:552587b429a1 6 *
bogdanm 89:552587b429a1 7 * Licensees are granted free, non-transferable use of the information. NO
bogdanm 89:552587b429a1 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
bogdanm 89:552587b429a1 9 * the file.
bogdanm 89:552587b429a1 10 *
bogdanm 89:552587b429a1 11 */
bogdanm 89:552587b429a1 12
bogdanm 89:552587b429a1 13 /** @file
bogdanm 89:552587b429a1 14 *
bogdanm 89:552587b429a1 15 * @defgroup memory_pool_internal Memory Pool Internal
bogdanm 89:552587b429a1 16 * @{
bogdanm 89:552587b429a1 17 * @ingroup memory_pool
bogdanm 89:552587b429a1 18 *
bogdanm 89:552587b429a1 19 * @brief Memory pool internal definitions
bogdanm 89:552587b429a1 20 */
bogdanm 89:552587b429a1 21
bogdanm 89:552587b429a1 22 #ifndef MEM_POOL_INTERNAL_H__
bogdanm 89:552587b429a1 23 #define MEM_POOL_INTERNAL_H__
bogdanm 89:552587b429a1 24
bogdanm 89:552587b429a1 25 #define TX_BUF_SIZE 600u /**< TX buffer size in bytes. */
bogdanm 89:552587b429a1 26 #define RX_BUF_SIZE TX_BUF_SIZE /**< RX buffer size in bytes. */
bogdanm 89:552587b429a1 27
bogdanm 89:552587b429a1 28 #define RX_BUF_QUEUE_SIZE 4u /**< RX buffer element size. */
bogdanm 89:552587b429a1 29
bogdanm 89:552587b429a1 30 #endif // MEM_POOL_INTERNAL_H__
bogdanm 89:552587b429a1 31
bogdanm 89:552587b429a1 32 /** @} */