mirror of https://github.com/ARMmbed/mbed-os.git
61 lines
1.3 KiB
C
61 lines
1.3 KiB
C
/* mbed Microcontroller Library
|
|
* Copyright (c) 2019 Arm Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef MBED_OBJECTS_H
|
|
#define MBED_OBJECTS_H
|
|
|
|
#include "cmsis.h"
|
|
#include "PeripheralNames.h"
|
|
#include "PinNames.h"
|
|
#include "platform_retarget_dev.h"
|
|
#include "gpio_object.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if TARGET_MUSCA_A1_NS
|
|
struct serial_s {
|
|
struct uart_pl011_dev_t *uart_dev;
|
|
UARTName uart_index; /* UART device number */
|
|
IRQn_Type tx_irq;
|
|
IRQn_Type rx_irq;
|
|
IRQn_Type rx_timeout_irq;
|
|
};
|
|
#endif // TARGET_MUSCA_A1_NS
|
|
|
|
#if DEVICE_FLASH
|
|
struct flash_s {
|
|
uint8_t dummy;
|
|
};
|
|
#endif // DEVICE_FLASH
|
|
|
|
#if DEVICE_TRNG
|
|
struct trng_s {
|
|
/* nothing to be stored for now */
|
|
void *dummy;
|
|
};
|
|
#endif // DEVICE_TRNG
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|