1 /***************************************************************************//** 2 * \file cy_device_headers.h 3 * 4 * \brief 5 * Common header file to be included by the drivers. 6 * 7 ******************************************************************************** 8 * \copyright 9 * (c) (2016-2024), Cypress Semiconductor Corporation (an Infineon company) or 10 * an affiliate of Cypress Semiconductor Corporation. 11 * 12 * SPDX-License-Identifier: Apache-2.0 13 * 14 * Licensed under the Apache License, Version 2.0 (the "License"); 15 * you may not use this file except in compliance with the License. 16 * You may obtain a copy of the License at 17 * 18 * http://www.apache.org/licenses/LICENSE-2.0 19 * 20 * Unless required by applicable law or agreed to in writing, software 21 * distributed under the License is distributed on an "AS IS" BASIS, 22 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 23 * See the License for the specific language governing permissions and 24 * limitations under the License. 25 *******************************************************************************/ 26 27 #ifndef _CY_DEVICE_HEADERS_H_ 28 #define _CY_DEVICE_HEADERS_H_ 29 30 #if defined (CYW20829B0LKML) 31 #include "cyw20829b0lkml.h" 32 #elif defined (CYW89829B0022) 33 #include "cyw89829b0022.h" 34 #elif defined (CYW89829B0232) 35 #include "cyw89829b0232.h" 36 #elif defined (CYW20829B0000) 37 #include "cyw20829b0000.h" 38 #elif defined (CYW20829B0010) 39 #include "cyw20829b0010.h" 40 #elif defined (CYW20829B0021) 41 #include "cyw20829b0021.h" 42 #elif defined (CYW20829A0LKML) 43 #include "cyw20829a0lkml.h" 44 #elif defined (CYW20829A0KML) 45 #include "cyw20829a0kml.h" 46 #elif defined (CYW89829A0KML) 47 #include "cyw89829a0kml.h" 48 #elif defined (CYW20829B0KML) 49 #include "cyw20829b0kml.h" 50 #elif defined (CYW89829B0KML) 51 #include "cyw89829b0kml.h" 52 #else 53 #error Undefined part number 54 #endif 55 56 57 #endif /* _CY_DEVICE_HEADERS_H_ */ 58 59 60 /* [] END OF FILE */ 61