Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sstaub committed Dec 5, 2021
1 parent 3d476c6 commit 2b613e0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,16 @@ The naming must the same as in the GrandMA3 software
#define KEY "Key"
```
## RAM usage adjustment
Because using strictly stack allocation of OSC strings,
you need to adjust the allpcation size in the gma3.h file.
```cpp
// OSC settings
#define OSC_PATTERN_SIZE 64 // length depends on naming conventions
#define OSC_STRING_SIZE 64 // length depends of the command length
#define OSC_MESSAGE_SIZE 128 // this should OSC_PATTERN_SIZE + OSC_STRING_SIZE
```

## Transport modes
- **UDPOSC** standard mode using UDP protocol
- **TCP** for OSC 1.0 supported by GrandMA3 using TCP
Expand Down

0 comments on commit 2b613e0

Please sign in to comment.