1 /* 2 * Copyright (c) 2024 Andrew Featherstone 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file 9 * @brief System/hardware module for Raspberry Pi RP235xx MCUs 10 * 11 * This module provides routines to initialize and support board-level hardware 12 * for the Raspberry Pi RP235xx (RP2350A, RP2350B, RP2354A, RP2354B). 13 */ 14 15 #if CONFIG_SOC_RESET_HOOK 16 #include <pico/runtime_init.h> 17 18 soc_reset_hook(void)19void soc_reset_hook(void) 20 { 21 runtime_init_per_core_enable_coprocessors(); 22 } 23 24 #endif /* CONFIG_SOC_RESET_HOOK */ 25