BA / SerialCom

Fork of OmniWheels by Gustav Atmel

Committer:
gustavatmel
Date:
Tue May 01 15:55:34 2018 +0000
Revision:
2:798925c9e4a8
Parent:
1:9c5af431a1f1
bluetooth

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gustavatmel 1:9c5af431a1f1 1 /***************************************************************************//**
gustavatmel 1:9c5af431a1f1 2 * @file serial_api_HAL.h
gustavatmel 1:9c5af431a1f1 3 *******************************************************************************
gustavatmel 1:9c5af431a1f1 4 * @section License
gustavatmel 1:9c5af431a1f1 5 * <b>(C) Copyright 2015 Silicon Labs, http://www.silabs.com</b>
gustavatmel 1:9c5af431a1f1 6 *******************************************************************************
gustavatmel 1:9c5af431a1f1 7 *
gustavatmel 1:9c5af431a1f1 8 * SPDX-License-Identifier: Apache-2.0
gustavatmel 1:9c5af431a1f1 9 *
gustavatmel 1:9c5af431a1f1 10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
gustavatmel 1:9c5af431a1f1 11 * not use this file except in compliance with the License.
gustavatmel 1:9c5af431a1f1 12 * You may obtain a copy of the License at
gustavatmel 1:9c5af431a1f1 13 *
gustavatmel 1:9c5af431a1f1 14 * http://www.apache.org/licenses/LICENSE-2.0
gustavatmel 1:9c5af431a1f1 15 *
gustavatmel 1:9c5af431a1f1 16 * Unless required by applicable law or agreed to in writing, software
gustavatmel 1:9c5af431a1f1 17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
gustavatmel 1:9c5af431a1f1 18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
gustavatmel 1:9c5af431a1f1 19 * See the License for the specific language governing permissions and
gustavatmel 1:9c5af431a1f1 20 * limitations under the License.
gustavatmel 1:9c5af431a1f1 21 *
gustavatmel 1:9c5af431a1f1 22 ******************************************************************************/
gustavatmel 1:9c5af431a1f1 23
gustavatmel 1:9c5af431a1f1 24 #ifndef MBED_SERIAL_API_HAL_H
gustavatmel 1:9c5af431a1f1 25 #define MBED_SERIAL_API_HAL_H
gustavatmel 1:9c5af431a1f1 26
gustavatmel 1:9c5af431a1f1 27 #include "em_device.h"
gustavatmel 1:9c5af431a1f1 28
gustavatmel 1:9c5af431a1f1 29 #ifdef _SILICON_LABS_32B_PLATFORM_2
gustavatmel 1:9c5af431a1f1 30
gustavatmel 1:9c5af431a1f1 31 #define UART_TYPE_USART 0x01
gustavatmel 1:9c5af431a1f1 32 #define UART_TYPE_LEUART 0x02
gustavatmel 1:9c5af431a1f1 33
gustavatmel 1:9c5af431a1f1 34 #ifdef __cplusplus
gustavatmel 1:9c5af431a1f1 35 extern "C" {
gustavatmel 1:9c5af431a1f1 36 #endif
gustavatmel 1:9c5af431a1f1 37
gustavatmel 1:9c5af431a1f1 38 #ifdef __cplusplus
gustavatmel 1:9c5af431a1f1 39 }
gustavatmel 1:9c5af431a1f1 40 #endif
gustavatmel 1:9c5af431a1f1 41
gustavatmel 1:9c5af431a1f1 42
gustavatmel 1:9c5af431a1f1 43 #endif
gustavatmel 1:9c5af431a1f1 44
gustavatmel 1:9c5af431a1f1 45 #endif