Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_RCBController by
HRM1017/nordic/nrf-sdk/app_common/hci_mem_pool_internal.h@4:ebda47d22091, 2014-08-20 (annotated)
- Committer:
- jksoft
- Date:
- Wed Aug 20 13:41:01 2014 +0000
- Revision:
- 4:ebda47d22091
- Parent:
- nRF51822/nordic/nrf-sdk/app_common/hci_mem_pool_internal.h@1:48f6e08a3ac2
?????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jksoft | 0:8c643bfe55b7 | 1 | /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved. |
jksoft | 0:8c643bfe55b7 | 2 | * |
jksoft | 0:8c643bfe55b7 | 3 | * The information contained herein is property of Nordic Semiconductor ASA. |
jksoft | 0:8c643bfe55b7 | 4 | * Terms and conditions of usage are described in detail in NORDIC |
jksoft | 0:8c643bfe55b7 | 5 | * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT. |
jksoft | 0:8c643bfe55b7 | 6 | * |
jksoft | 0:8c643bfe55b7 | 7 | * Licensees are granted free, non-transferable use of the information. NO |
jksoft | 0:8c643bfe55b7 | 8 | * WARRANTY of ANY KIND is provided. This heading must NOT be removed from |
jksoft | 0:8c643bfe55b7 | 9 | * the file. |
jksoft | 0:8c643bfe55b7 | 10 | * |
jksoft | 0:8c643bfe55b7 | 11 | */ |
jksoft | 0:8c643bfe55b7 | 12 | |
jksoft | 0:8c643bfe55b7 | 13 | /** @file |
jksoft | 0:8c643bfe55b7 | 14 | * |
jksoft | 0:8c643bfe55b7 | 15 | * @defgroup memory_pool_internal Memory Pool Internal |
jksoft | 0:8c643bfe55b7 | 16 | * @{ |
jksoft | 0:8c643bfe55b7 | 17 | * @ingroup memory_pool |
jksoft | 0:8c643bfe55b7 | 18 | * |
jksoft | 0:8c643bfe55b7 | 19 | * @brief Memory pool internal definitions |
jksoft | 0:8c643bfe55b7 | 20 | */ |
jksoft | 0:8c643bfe55b7 | 21 | |
jksoft | 0:8c643bfe55b7 | 22 | #ifndef MEM_POOL_INTERNAL_H__ |
jksoft | 0:8c643bfe55b7 | 23 | #define MEM_POOL_INTERNAL_H__ |
jksoft | 0:8c643bfe55b7 | 24 | |
jksoft | 0:8c643bfe55b7 | 25 | #define TX_BUF_SIZE 600u /**< TX buffer size in bytes. */ |
jksoft | 0:8c643bfe55b7 | 26 | #define RX_BUF_SIZE TX_BUF_SIZE /**< RX buffer size in bytes. */ |
jksoft | 0:8c643bfe55b7 | 27 | |
jksoft | 0:8c643bfe55b7 | 28 | #define RX_BUF_QUEUE_SIZE 4u /**< RX buffer element size. */ |
jksoft | 0:8c643bfe55b7 | 29 | |
jksoft | 0:8c643bfe55b7 | 30 | #endif // MEM_POOL_INTERNAL_H__ |
jksoft | 0:8c643bfe55b7 | 31 | |
jksoft | 0:8c643bfe55b7 | 32 | /** @} */ |