+
//
// Copyright (c) 2010-2018 Antmicro
//
@@ -432,18 +432,18 @@
IRQ = new GPIO();
var registersMap = new Dictionary
{
- {(long)Registers.RxTx, new DoubleWordRegister(this)
- .WithValueField(0, 8,
- writeCallback: (_, value) =>
- this.TransmitCharacter((byte)value),
- valueProviderCallback: _ => {
- if(!TryGetCharacter(out var character))
- {
- this.Log(LogLevel.Warning, "Empty Rx FIFO.");
- }
- return character;
- })
- },
+ {(long)Registers.RxTx, new DoubleWordRegister(this)
+ .WithValueField(0, 8,
+ writeCallback: (_, value) =>
+ this.TransmitCharacter((byte)value),
+ valueProviderCallback: _ => {
+ if(!TryGetCharacter(out var character))
+ {
+ this.Log(LogLevel.Warning, "Empty Rx FIFO.");
+ }
+ return character;
+ })
+ },
{(long)Registers.TxFull, new DoubleWordRegister(this)
.WithFlag(0, FieldMode.Read) //tx is never full
},
@@ -701,7 +701,7 @@
+
STMicroelectronics
@@ -892,7 +892,7 @@
// when the presentation is scaled to fit different resolutions. Can be
// specified using percentage units.
width: 1280,
- height: 960,
+ height: 840,
// Factor of the display size that should remain empty around the content
margin: 0.1,