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:
AnnaBridge
Date:
Fri May 26 12:30:20 2017 +0100
Revision:
143:86740a56073b
Parent:
128:9bcdf88f62b0
Release 143 of the mbed library.

Who changed what in which revision?

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