The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Wed Oct 29 11:02:04 2014 +0000
Revision:
91:031413cf7a89
Release 91 of the mbed library

Changes:

- RBLAB_NANO - new target addition
- NRF51_DK - new target addition
- NRF51_DONGLE - new target addition

Who changed what in which revision?

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