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
AnnaBridge 167:84c0a372a020 1 /******************************************************************************
AnnaBridge 167:84c0a372a020 2 * Copyright (c) 2017-2017, ARM, All Rights Reserved *
AnnaBridge 167:84c0a372a020 3 * SPDX-License-Identifier: Apache-2.0 *
AnnaBridge 167:84c0a372a020 4 * *
AnnaBridge 167:84c0a372a020 5 * Licensed under the Apache License, Version 2.0 (the "License"); *
AnnaBridge 167:84c0a372a020 6 * you may not use this file except in compliance with the License. *
AnnaBridge 167:84c0a372a020 7 * *
AnnaBridge 167:84c0a372a020 8 * You may obtain a copy of the License at *
AnnaBridge 167:84c0a372a020 9 * http://www.apache.org/licenses/LICENSE-2.0 *
AnnaBridge 167:84c0a372a020 10 * *
AnnaBridge 167:84c0a372a020 11 * Unless required by applicable law or agreed to in writing, software *
AnnaBridge 167:84c0a372a020 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT *
AnnaBridge 167:84c0a372a020 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
AnnaBridge 167:84c0a372a020 14 * *
AnnaBridge 167:84c0a372a020 15 * See the License for the specific language governing permissions and *
AnnaBridge 167:84c0a372a020 16 * limitations under the License. *
AnnaBridge 167:84c0a372a020 17 ******************************************************************************/
AnnaBridge 167:84c0a372a020 18
AnnaBridge 167:84c0a372a020 19 #ifndef __DX_REG_BASE_HOST_H__
AnnaBridge 167:84c0a372a020 20 #define __DX_REG_BASE_HOST_H__
AnnaBridge 167:84c0a372a020 21
AnnaBridge 167:84c0a372a020 22 /*!
AnnaBridge 167:84c0a372a020 23 @file
AnnaBridge 167:84c0a372a020 24 @brief This file contains general HW related definitions.
AnnaBridge 167:84c0a372a020 25 */
AnnaBridge 167:84c0a372a020 26
AnnaBridge 167:84c0a372a020 27 /*! Identify platform: Xilinx Zynq7000 ZC706 */
AnnaBridge 167:84c0a372a020 28 #define DX_PLAT_ZYNQ7000 1
AnnaBridge 167:84c0a372a020 29 #define DX_PLAT_ZYNQ7000_ZC706 1
AnnaBridge 167:84c0a372a020 30
AnnaBridge 167:84c0a372a020 31 /*! SEP core clock frequency in MHz */
AnnaBridge 167:84c0a372a020 32 #define DX_SEP_FREQ_MHZ 50
AnnaBridge 167:84c0a372a020 33
AnnaBridge 167:84c0a372a020 34 /*! Base address for Sansa Silicon-Secure registers. It must be modified to match the mapping of Sansa Silicon-Secure on the customer's *
AnnaBridge 167:84c0a372a020 35 * platform.*/
AnnaBridge 167:84c0a372a020 36 #define DX_BASE_RNG 0x40000000
AnnaBridge 167:84c0a372a020 37
AnnaBridge 167:84c0a372a020 38 /*! Base address for FPGA environment registers */
AnnaBridge 167:84c0a372a020 39 #define DX_BASE_ENV_REGS 0x80008000
AnnaBridge 167:84c0a372a020 40
AnnaBridge 167:84c0a372a020 41 #endif /*__DX_REG_BASE_HOST_H__*/