diff --git a/soc/st/arm/m4/wb b/soc/st/arm/m4/wb index fa944d8..365ca73 160000 --- a/soc/st/arm/m4/wb +++ b/soc/st/arm/m4/wb @@ -1 +1 @@ -Subproject commit fa944d8dc750bae76a50b8e4c419f572976c25d4 +Subproject commit 365ca73db58108e413c4ea345f9573cdce5fcd16 diff --git a/xmcu/hal/peripherals/AES.hpp b/xmcu/hal/peripherals/AES.hpp new file mode 100644 index 0000000..1c5674c --- /dev/null +++ b/xmcu/hal/peripherals/AES.hpp @@ -0,0 +1,22 @@ +#pragma once + +/* + * Copyright (c) xEmbeddedTools team and contributors. + * Licensed under the Apache License, Version 2.0. See LICENSE file in the project root for details. + */ + +// xmcu +#include + +// clang-format off +// soc +#if defined(STM32WB) +#include DECORATE_INCLUDE_PATH(soc/XMCU_SOC_VENDOR/XMCU_SOC_ARCHITECTURE/XMCU_SOC_CORE_FAMILY/XMCU_SOC_VENDOR_FAMILY/XMCU_SOC_VENDOR_FAMILY_RM/peripherals/AES/AES.hpp) +#endif +// clang-format on + +namespace xmcu::hal::peripherals { +using AES = xmcu::soc::XMCU_SOC_VENDOR::XMCU_SOC_ARCHITECTURE::XMCU_SOC_CORE_FAMILY::XMCU_SOC_VENDOR_FAMILY:: + XMCU_SOC_VENDOR_FAMILY_RM::peripherals::AES; +} // namespace xmcu::hal::peripherals +