Nordic nrf51 sdk sources. Mirrored from https://github.com/ARMmbed/nrf51-sdk.

Dependents:   nRF51822 nRF51822

Committer:
vcoubard
Date:
Thu Apr 07 17:37:56 2016 +0100
Revision:
28:041dac1366b2
Parent:
27:0fe148f1bca3
Child:
29:286940b7ee5a
Synchronized with git rev 012b8118
Author: Liyou Zhou
Pull in files from sdk 10.0

Who changed what in which revision?

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