1 /** 2 * @file MAX32xxx.h 3 * @brief Includes all the required dependancies. 4 */ 5 6 /****************************************************************************** 7 * 8 * Copyright (C) 2022-2023 Maxim Integrated Products, Inc. (now owned by 9 * Analog Devices, Inc.), 10 * Copyright (C) 2023-2024 Analog Devices, Inc. 11 * 12 * Licensed under the Apache License, Version 2.0 (the "License"); 13 * you may not use this file except in compliance with the License. 14 * You may obtain a copy of the License at 15 * 16 * http://www.apache.org/licenses/LICENSE-2.0 17 * 18 * Unless required by applicable law or agreed to in writing, software 19 * distributed under the License is distributed on an "AS IS" BASIS, 20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 * See the License for the specific language governing permissions and 22 * limitations under the License. 23 * 24 ******************************************************************************/ 25 26 #ifndef LIBRARIES_PERIPHDRIVERS_INCLUDE_MAX32570_MAX32XXX_H_ 27 #define LIBRARIES_PERIPHDRIVERS_INCLUDE_MAX32570_MAX32XXX_H_ 28 29 #include "mxc_device.h" 30 #include "mxc_delay.h" 31 #include "mxc_assert.h" 32 #include "mxc_errors.h" 33 #include "mxc_lock.h" 34 #include "mxc_pins.h" 35 #include "mxc_sys.h" 36 #include "nvic_table.h" 37 #ifdef LIB_BOARD 38 #include "board.h" 39 #endif 40 41 /* 42 * Peripheral Driver Includes 43 */ 44 #include "adc.h" 45 #include "cameraif.h" 46 #include "clcd.h" 47 #include "ctb.h" 48 #include "dma.h" 49 #include "emac.h" 50 #include "flc.h" 51 #include "gpio.h" 52 #include "htmr.h" 53 #include "i2c.h" 54 #include "icc.h" 55 #include "lp.h" 56 #include "owm.h" 57 #include "pt.h" 58 #include "rtc.h" 59 #include "sc.h" 60 #include "sdhc.h" 61 #include "sema.h" 62 #include "sfcc.h" 63 #include "skbd.h" 64 #include "smon.h" 65 #include "spi.h" 66 #include "spixf.h" 67 #include "spixr.h" 68 #include "srcc.h" 69 #include "tmr.h" 70 #include "uart.h" 71 #include "wdt.h" 72 73 #endif // LIBRARIES_PERIPHDRIVERS_INCLUDE_MAX32570_MAX32XXX_H_ 74