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 System; 8 using Antmicro.Renode.Core; 9 using Antmicro.Renode.Peripherals.Sensor; 10 11 namespace Antmicro.Renode.Peripherals.Sensors 12 { 13 // This model is a stub, roughly compatible with TMP103 14 public class TMP108 : TMP103 15 { TMP108(IMachine machine)16 public TMP108(IMachine machine) : base(machine) 17 { 18 } 19 } 20 } 21