Skip to content

Commit

Permalink
Readme update.
Browse files Browse the repository at this point in the history
  • Loading branch information
maniglia committed Jan 7, 2025
1 parent 79b8b0c commit 28d78fe
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ You need to use _PackageReference_, otherwise some contents will not be copied t

## Currently supported features

All functions also exist in an asynchronous version.

## STLINK functions
- GetStLinkList
- GetStLinkEnumerationList
Expand Down Expand Up @@ -165,6 +167,12 @@ cubeProgrammerApi.SetVerbosityLevel(CubeProgrammerVerbosityLevel.CubeprogrammerV
var stLinkList = cubeProgrammerApi.GetStLinkEnumerationList();
```

or

```csharp
var stLinkList = await cubeProgrammerApi.GetStLinkEnumerationListAsync();
```

- Connect:

```csharp
Expand Down
8 changes: 8 additions & 0 deletions docs/KSociety.SharpCubeProgrammer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ You need to use _PackageReference_, otherwise some contents will not be copied t

## Currently supported features

All functions also exist in an asynchronous version.

## STLINK functions
- GetStLinkList
- GetStLinkEnumerationList
Expand Down Expand Up @@ -160,6 +162,12 @@ cubeProgrammerApi.SetVerbosityLevel(CubeProgrammerVerbosityLevel.CubeprogrammerV
var stLinkList = cubeProgrammerApi.GetStLinkEnumerationList();
```

or

```csharp
var stLinkList = await cubeProgrammerApi.GetStLinkEnumerationListAsync();
```

- Connect:

```csharp
Expand Down

0 comments on commit 28d78fe

Please sign in to comment.