1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* Copyright Statement:
- *
- * This software/firmware and related documentation ("AutoChips Software") are
- * protected under relevant copyright laws. The information contained herein is
- * confidential and proprietary to AutoChips Inc. and/or its licensors. Without
- * the prior written permission of AutoChips inc. and/or its licensors, any
- * reproduction, modification, use or disclosure of AutoChips Software, and
- * information contained herein, in whole or in part, shall be strictly
- * prohibited.
- *
- * AutoChips Inc. (C) 2022. All rights reserved.
- *
- * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("AUTOCHIPS SOFTWARE")
- * RECEIVED FROM AUTOCHIPS AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER
- * ON AN "AS-IS" BASIS ONLY. AUTOCHIPS EXPRESSLY DISCLAIMS ANY AND ALL
- * WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
- * NONINFRINGEMENT. NEITHER DOES AUTOCHIPS PROVIDE ANY WARRANTY WHATSOEVER WITH
- * RESPECT TO THE SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY,
- * INCORPORATED IN, OR SUPPLIED WITH THE AUTOCHIPS SOFTWARE, AND RECEIVER AGREES
- * TO LOOK ONLY TO SUCH THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO.
- * RECEIVER EXPRESSLY ACKNOWLEDGES THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO
- * OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES CONTAINED IN AUTOCHIPS
- * SOFTWARE. AUTOCHIPS SHALL ALSO NOT BE RESPONSIBLE FOR ANY AUTOCHIPS SOFTWARE
- * RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
- * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND AUTOCHIPS'S
- * ENTIRE AND CUMULATIVE LIABILITY WITH RESPECT TO THE AUTOCHIPS SOFTWARE
- * RELEASED HEREUNDER WILL BE, AT AUTOCHIPS'S OPTION, TO REVISE OR REPLACE THE
- * AUTOCHIPS SOFTWARE AT ISSUE, OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE
- * CHARGE PAID BY RECEIVER TO AUTOCHIPS FOR SUCH AUTOCHIPS SOFTWARE AT ISSUE.
- */
- /******************************************************************************
- * @version: V2.0.1 AC7840x Demo
- ******************************************************************************/
- #ifndef _CLOCK_CONIFG_H
- #define _CLOCK_CONIFG_H
- /*!
- * @file clock_config.h
- *
- * @brief clock config function definition.
- */
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
- /* =========================================== Includes =========================================== */
- #include <stdbool.h>
- #include <stdint.h>
- #include "ckgen_drv.h"
- /* =========================================== Typedef ============================================ */
- /* ========================================== Variables =========================================== */
- /*! @brief User configuration structure 0 */
- extern clock_manager_user_config_t clockMan1_InitConfig0;
- /*! @brief Count of user configuration structures */
- #define CLOCK_MANAGER_CONFIG_CNT 1U
- /*! @brief Array of pointers to User configuration structures */
- extern clock_manager_user_config_t const *g_clockManConfigsArr[];
- /*! @brief User peripheral configuration structure 0 */
- extern peripheral_clock_config_t peripheralClockConfig0[];
- /*! @brief Count of peripheral clock user configurations */
- #define NUM_OF_PERIPHERAL_CLOCKS_0 23U
- /*! @brief Count of user Callbacks */
- #define CLOCK_MANAGER_CALLBACK_CNT 0U
- /*! @brief Array of User callbacks */
- extern clock_manager_callback_user_config_t *g_clockManCallbacksArr[];
- /* ==================================== Functions declaration ===================================== */
- /* ====================================== Functions define ======================================== */
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */
- #endif /* _CLOCK_CONIFG_H */
- /* ============================================= EOF ============================================== */
|