Marco Mayer / Mbed OS Queue
Committer:
demayer
Date:
Wed Apr 22 11:50:00 2020 +0000
Revision:
2:c7897a3f5f11
Parent:
0:6bf0743ece18
test

Who changed what in which revision?

UserRevisionLine numberNew contents of line
demayer 0:6bf0743ece18 1 /* mbed Microcontroller Library
demayer 0:6bf0743ece18 2 *******************************************************************************
demayer 0:6bf0743ece18 3 * Copyright (c) 2016, STMicroelectronics
demayer 0:6bf0743ece18 4 * All rights reserved.
demayer 0:6bf0743ece18 5 *
demayer 0:6bf0743ece18 6 * Redistribution and use in source and binary forms, with or without
demayer 0:6bf0743ece18 7 * modification, are permitted provided that the following conditions are met:
demayer 0:6bf0743ece18 8 *
demayer 0:6bf0743ece18 9 * 1. Redistributions of source code must retain the above copyright notice,
demayer 0:6bf0743ece18 10 * this list of conditions and the following disclaimer.
demayer 0:6bf0743ece18 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
demayer 0:6bf0743ece18 12 * this list of conditions and the following disclaimer in the documentation
demayer 0:6bf0743ece18 13 * and/or other materials provided with the distribution.
demayer 0:6bf0743ece18 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
demayer 0:6bf0743ece18 15 * may be used to endorse or promote products derived from this software
demayer 0:6bf0743ece18 16 * without specific prior written permission.
demayer 0:6bf0743ece18 17 *
demayer 0:6bf0743ece18 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
demayer 0:6bf0743ece18 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
demayer 0:6bf0743ece18 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
demayer 0:6bf0743ece18 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
demayer 0:6bf0743ece18 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
demayer 0:6bf0743ece18 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
demayer 0:6bf0743ece18 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
demayer 0:6bf0743ece18 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
demayer 0:6bf0743ece18 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
demayer 0:6bf0743ece18 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
demayer 0:6bf0743ece18 28 *******************************************************************************
demayer 0:6bf0743ece18 29 */
demayer 0:6bf0743ece18 30 #ifndef MBED_DEVICE_H
demayer 0:6bf0743ece18 31 #define MBED_DEVICE_H
demayer 0:6bf0743ece18 32
demayer 0:6bf0743ece18 33 #define DEVICE_ID_LENGTH 24
demayer 0:6bf0743ece18 34
demayer 0:6bf0743ece18 35 #include "objects.h"
demayer 0:6bf0743ece18 36
demayer 0:6bf0743ece18 37 #endif