diff --git a/README.md b/README.md index ee5b508..9a0bd6d 100644 --- a/README.md +++ b/README.md @@ -269,11 +269,11 @@ The naming must the same as in the GrandMA3 software ## RAM usage adjustment Because using strictly stack allocation of OSC strings, -you need to adjust the allpcation size in the gma3.h file. +you need to adjust the allocation 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_STRING_SIZE 64 // length depends on maximum command length #define OSC_MESSAGE_SIZE 128 // this should OSC_PATTERN_SIZE + OSC_STRING_SIZE ``` @@ -484,4 +484,4 @@ OSC Pattern: /gma3/13.13.1.5.2 String: Go+ Integer 1: 1 Integer 2: 0 Float: 0.00 OSC Pattern: /gma3/13.13.1.5.2 String: Go+ Integer 1: 0 Integer 2: 0 Float: 0.00 OSC Pattern: /gma3/13.13.1.5.2 String: FaderMaster Integer 1: 1 Integer 2: 0 Float: 100.00 ``` -The OSC pattern data is very cryptic because of the representation of the internal structure which there is no real docuentation. \ No newline at end of file +The OSC pattern data is very cryptic because of the representation of the internal structure which there is no real docuentation.