1 /* 2 Copyright 2020-2022, Cypress Semiconductor Corporation (an Infineon company) 3 SPDX-License-Identifier: Apache-2.0 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 */ 17 18 19 #include <stdint.h> 20 #include "cy_device_headers.h" 21 22 #if defined(CY_DEVICE_PSOC6ABLE2) || defined(CY_DEVICE_PSOC6A2M) || defined(CY_DEVICE_PSOC6A512K) || defined(CY_DEVICE_PSOC6A256K) 23 24 #if defined(__APPLE__) && defined(__clang__) 25 __attribute__ ((__section__("__CY_M0P_IMAGE,__cy_m0p_image"), used)) 26 #elif defined(__GNUC__) || defined(__ARMCC_VERSION) 27 __attribute__ ((__section__(".cy_m0p_image"), used)) 28 #elif defined(__ICCARM__) 29 #pragma location=".cy_m0p_image" 30 #else 31 #error "An unsupported toolchain" 32 #endif 33 const uint8_t cy_m0p_image[] = { 34 #include <psoc6_cm0p_sleep.bin.inc> 35 }; 36 #endif /* defined(CY_DEVICE_PSOC6ABLE2) || defined(CY_DEVICE_PSOC6A2M) || defined(CY_DEVICE_PSOC6A512K) || defined(CY_DEVICE_PSOC6A256K) */ 37