Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/famicom-dumper-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-30 09:02:28 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-30 09:02:28 +0300
commit61ea505b2c9077040a01021bfb2a09d7cc2f9525 (patch)
tree2de7a69d866118f20c2ddd7c368a579c6d10d5b1 /README.md
parentfaa80a881028dae25d570fdc576981e9674df57f (diff)
Init() over gRPC
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0f65e55..52256ba 100644
--- a/README.md
+++ b/README.md
@@ -144,9 +144,15 @@ Mapper scripts are written in C# language. Each script must contain class (any n
FamicomDumperConnection implements [IFamicomDumperConnection](https://github.com/ClusterM/famicom-dumper-client/blob/master/FamicomDumperConnection/IFamicomDumperConnection.cs) interface:
```C#
- public interface IFamicomDumperConnection : IDisposable
+ public interface IFamicomDumperConnection : IDisposable
{
/// <summary>
+ /// Init dumper (flush queud data, check connection)
+ /// </summary>
+ /// <returns></returns>
+ public bool Init();
+
+ /// <summary>
/// Famicom Dumper serial protocol version (depends on firmware)
/// </summary>
byte ProtocolVersion { get; }