mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

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

Committer:
mbed_official
Date:
Wed Jul 29 09:45:09 2015 +0100
Revision:
598:2d5fc5624619
Synchronized with git revision e87fec7b35d45d8663318a40a4a9fb58f91d0237

Full URL: https://github.com/mbedmicro/mbed/commit/e87fec7b35d45d8663318a40a4a9fb58f91d0237/

Microbit addition

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 598:2d5fc5624619 1 /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
mbed_official 598:2d5fc5624619 2 *
mbed_official 598:2d5fc5624619 3 * The information contained herein is property of Nordic Semiconductor ASA.
mbed_official 598:2d5fc5624619 4 * Terms and conditions of usage are described in detail in NORDIC
mbed_official 598:2d5fc5624619 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
mbed_official 598:2d5fc5624619 6 *
mbed_official 598:2d5fc5624619 7 * Licensees are granted free, non-transferable use of the information. NO
mbed_official 598:2d5fc5624619 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
mbed_official 598:2d5fc5624619 9 * the file.
mbed_official 598:2d5fc5624619 10 *
mbed_official 598:2d5fc5624619 11 */
mbed_official 598:2d5fc5624619 12 #ifndef TWI_MASTER_CONFIG
mbed_official 598:2d5fc5624619 13 #define TWI_MASTER_CONFIG
mbed_official 598:2d5fc5624619 14
mbed_official 598:2d5fc5624619 15 #include "PinNames.h"
mbed_official 598:2d5fc5624619 16
mbed_official 598:2d5fc5624619 17 #define TWI_MASTER_CONFIG_CLOCK_PIN_NUMBER (I2C_SCL0)
mbed_official 598:2d5fc5624619 18 #define TWI_MASTER_CONFIG_DATA_PIN_NUMBER (I2C_SDA0)
mbed_official 598:2d5fc5624619 19
mbed_official 598:2d5fc5624619 20 #endif