1 // 2 // Copyright (c) 2010-2023 Antmicro 3 // 4 // This file is licensed under the MIT License. 5 // Full license text is available in 'licenses/MIT.txt'. 6 // 7 using Antmicro.Renode.Core; 8 9 namespace Antmicro.Renode.Peripherals.SPI 10 { 11 public class STM32WBA_SPI : STM32H7_SPI 12 { STM32WBA_SPI(IMachine machine)13 public STM32WBA_SPI(IMachine machine) : base(machine) 14 { 15 } 16 17 protected override bool IsWba { get; } = true; 18 } 19 } 20