You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
627 B
30 lines
627 B
/* |
|
* Copyright (c) 2021 Cypress Semiconductor Corporation (an Infineon company) or |
|
* an affiliate of Cypress Semiconductor Corporation |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/** |
|
* @brief Infineon XMC7200 SOC. |
|
*/ |
|
|
|
#include <zephyr/device.h> |
|
#include <zephyr/init.h> |
|
#include <zephyr/kernel.h> |
|
|
|
#include <cy_sysint.h> |
|
#include <cy_wdt.h> |
|
|
|
void soc_prep_hook(void) |
|
{ |
|
Cy_WDT_Unlock(); |
|
Cy_WDT_Disable(); |
|
SystemCoreClockUpdate(); |
|
} |
|
|
|
void enable_sys_int(uint32_t int_num, uint32_t priority, void (*isr)(const void *), const void *arg) |
|
{ |
|
/* Interrupts are not supported on cm0p */ |
|
k_fatal_halt(K_ERR_CPU_EXCEPTION); |
|
}
|
|
|