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:
Wed Feb 20 20:53:29 2019 +0000
Revision:
172:65be27845400
Parent:
171:3a7713b1edbc
mbed library release version 165

Who changed what in which revision?

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