diff options
author | cbdev <cb@cbcdn.com> | 2019-07-24 21:33:23 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-07-24 21:33:23 +0200 |
commit | c75721e77ecada3c88f4b493c1e3036c151bfe88 (patch) | |
tree | c59f930b486240dd3fdde5dca2cac3b6a760317f /backends | |
parent | 1f0de6d91c14217ae3893da0e4b6089b799ed026 (diff) | |
download | midimonster-c75721e77ecada3c88f4b493c1e3036c151bfe88.tar.gz midimonster-c75721e77ecada3c88f4b493c1e3036c151bfe88.tar.bz2 midimonster-c75721e77ecada3c88f4b493c1e3036c151bfe88.zip |
Clarify backend documentation
Diffstat (limited to 'backends')
-rw-r--r-- | backends/evdev.md | 4 | ||||
-rw-r--r-- | backends/lua.c | 4 | ||||
-rw-r--r-- | backends/lua.md | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/backends/evdev.md b/backends/evdev.md index dfe5ec9..d750f1e 100644 --- a/backends/evdev.md +++ b/backends/evdev.md @@ -30,6 +30,8 @@ instances. The configuration value contains, space-separated, the following valu * `flat`: An offset, below which all deviations will be ignored * `resolution`: Axis resolution in units per millimeter (or units per radian for rotational axes) +If an axis is not used for output, this configuration can be omitted. + For real devices, all of these parameters for every axis can be found by running `evtest` on the device. #### Channel specification @@ -69,4 +71,4 @@ than `0`, respectively. As for output, only the values `-1`, `0` and `1` are gen `EV_KEY` key-down events are sent for normalized channel values over `0.9`. Extended event type values such as `EV_LED`, `EV_SND`, etc are recognized in the MIDIMonster configuration file -but may or may not work with the internal channel mapping and normalization code.
\ No newline at end of file +but may or may not work with the internal channel mapping and normalization code. diff --git a/backends/lua.c b/backends/lua.c index 4d946cd..61e4e08 100644 --- a/backends/lua.c +++ b/backends/lua.c @@ -277,7 +277,7 @@ static int lua_configure_instance(instance* inst, char* option, char* value){ lua_instance_data* data = (lua_instance_data*) inst->impl; //load a lua file into the interpreter - if(!strcmp(option, "script")){ + if(!strcmp(option, "script") || !strcmp(option, "source")){ if(luaL_dofile(data->interpreter, value)){ fprintf(stderr, "Failed to load lua source file %s for instance %s: %s\n", value, inst->name, lua_tostring(data->interpreter, -1)); return 1; @@ -285,7 +285,7 @@ static int lua_configure_instance(instance* inst, char* option, char* value){ return 0; } - fprintf(stderr, "Unknown configuration parameter %s for lua backend\n", option); + fprintf(stderr, "Unknown configuration parameter %s for lua instance %s\n", option, inst->name); return 1; } diff --git a/backends/lua.md b/backends/lua.md index e273b28..1c67477 100644 --- a/backends/lua.md +++ b/backends/lua.md @@ -43,7 +43,7 @@ The backend does not take any global configuration. | Option | Example value | Default value | Description | |---------------|-----------------------|-----------------------|-----------------------| -| `source` | `script.lua` | none | Lua source file | +| `script` | `script.lua` | none | Lua source file | A single instance may have multiple `source` options specified, which will all be read cumulatively. |