Skip to content

Commit c969467

Browse files
committed
chore: minor tidying
1 parent 689a43b commit c969467

File tree

3 files changed

+4
-23
lines changed

3 files changed

+4
-23
lines changed

AtemProxy/AtemServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void AcceptConnections()
4545
_accept = true;
4646
}
4747

48-
public void StartAnnounce(string modelName, string deviceId)
48+
public void StartAnnounce(string modelName, string deviceId)
4949
{
5050
_mdns.UseIpv4 = true;
5151
_mdns.UseIpv6 = false;

AtemProxy/Program.cs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ public static void Main(string[] args)
3939
server.Connections.OnReceive += (sender, pkt) =>
4040
{
4141
log.InfoFormat("Got packet from {0}", sender);
42-
// TODO
4342

4443
var acceptedCommands = new List<Tuple<ICommand, byte[]>>();
4544
foreach (ParsedCommandSpec rawCmd in pkt.Commands)
@@ -130,25 +129,6 @@ public static void Main(string[] args)
130129
server.StartReceive();
131130
server.StartPingTimer();
132131

133-
134-
/*
135-
var client = new AtemClient("10.42.13.95");
136-
client.Connect();
137-
client.OnConnection += (sender) =>
138-
{
139-
client.SendCommand(new FairlightMixerSourceSetCommand()
140-
{
141-
Mask = FairlightMixerSourceSetCommand.MaskFlags.Gain,
142-
Index = AudioSource.Mic1,
143-
SourceId = -256,
144-
Gain = -10
145-
});
146-
Console.WriteLine("Sent");
147-
};
148-
149-
while(true){}
150-
*/
151-
152132
Console.WriteLine("Press Ctrl+C to terminate...");
153133

154134
AutoResetEvent waitHandle = new AutoResetEvent(false);

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ Note: It is recommended to connect directly to the atem for clients which are im
1818
The primary focus is to support 8.0+ fully. Older versions may work, but are no longer recommended.
1919
7.2 should work pretty well, but is not feature complete.
2020

21-
Currently, 8.0.0 - 8.5.3 should work fully. Newer firmware may work, but could have issues with clients connecting after it has been running for a while.
21+
Currently, 8.0.0 - 8.6.4 should work fully. Newer firmware may work, but could have issues with clients connecting after it has been running for a while.
2222

2323
### Download
24-
When it is ready
24+
25+
Check the releases tab
2526

2627
### Usage
2728
Coming soon

0 commit comments

Comments
 (0)