1 /** 2 ********************************************************************************* 3 * 4 * @file ald_conf.h 5 * @brief Enable/Disable the peripheral module. 6 * 7 * @version V1.0 8 * @date 18 Apr 2017 9 * @author AE Team 10 * @note 11 * 12 * Copyright (C) Shanghai Eastsoft Microelectronics Co. Ltd. All rights reserved. 13 * 14 * SPDX-License-Identifier: Apache-2.0 15 * 16 * Licensed under the Apache License, Version 2.0 (the License); you may 17 * not use this file except in compliance with the License. 18 * You may obtain a copy of the License at 19 * 20 * www.apache.org/licenses/LICENSE-2.0 21 * 22 * Unless required by applicable law or agreed to in writing, software 23 * distributed under the License is distributed on an AS IS BASIS, WITHOUT 24 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 25 * See the License for the specific language governing permissions and 26 * limitations under the License. 27 * 28 ********************************************************************************* 29 */ 30 31 32 #ifndef __ALD_CONF_H__ 33 #define __ALD_CONF_H__ 34 35 36 #define ALD_DMA 37 #define ALD_GPIO 38 #define ALD_UART 39 #define ALD_LPUART 40 #define ALD_USART 41 #define ALD_SMARTCARD /* The ALD_SMARTCARD depend on ALD_USART */ 42 #define ALD_I2C 43 #define ALD_CMU 44 #define ALD_RMU 45 #define ALD_PMU 46 #define ALD_WDT 47 #define ALD_LCD 48 #define ALD_RTC 49 #define ALD_CAN 50 #define ALD_FLASH 51 #define ALD_ADC 52 #define ALD_CRC 53 #define ALD_CRYPT 54 #define ALD_TIMER 55 #define ALD_LPTIM 56 #define ALD_PIS 57 #define ALD_SPI 58 #define ALD_CALC 59 #define ALD_ACMP 60 #define ALD_OPAMP 61 #define ALD_TRNG 62 #define ALD_TEMP 63 #define ALD_BKPC 64 #define ALD_DAC 65 #define ALD_IAP 66 67 #define TICK_INT_PRIORITY 3 68 69 #endif 70