summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac3
-rw-r--r--decoders/avr_isp/pd.py2
-rw-r--r--decoders/lm75/pd.py2
-rw-r--r--sigrokdecode.h.in2
4 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 56dce10..e024014 100644
--- a/configure.ac
+++ b/configure.ac
@@ -102,7 +102,8 @@ case "$build" in
# On Darwin, Macports has python3.x-config, fink has python3-config.
# Mac OS X (Snow Leopard) ships with 'python-config' per default, but
# that's Python 2.x, so not useful for us.
- # Everything else is untested, we just hope 'PYTHON3_CONFIG' works.
+ # Everything else is untested, we just hope some $PYTHON3_CONFIG
+ # (i.e., any of the tools we check for above) is available.
if test -n "$PYTHON3_CONFIG"; then
CPPFLAGS_PYTHON="$($PYTHON3_CONFIG --includes)"
LDFLAGS_PYTHON="$($PYTHON3_CONFIG --ldflags)"
diff --git a/decoders/avr_isp/pd.py b/decoders/avr_isp/pd.py
index 9ecc280..68be0ca 100644
--- a/decoders/avr_isp/pd.py
+++ b/decoders/avr_isp/pd.py
@@ -29,7 +29,7 @@ class Decoder(srd.Decoder):
api_version = 1
id = 'avr_isp'
name = 'AVR ISP'
- longname = 'AVR in-system programming'
+ longname = 'AVR In-System Programming'
desc = 'Protocol for in-system programming Atmel AVR MCUs.'
license = 'gplv2+'
inputs = ['spi', 'logic']
diff --git a/decoders/lm75/pd.py b/decoders/lm75/pd.py
index 9d2f0ab..86d3950 100644
--- a/decoders/lm75/pd.py
+++ b/decoders/lm75/pd.py
@@ -46,7 +46,7 @@ class Decoder(srd.Decoder):
id = 'lm75'
name = 'LM75'
longname = 'National LM75'
- desc = 'National LM75 (and compatibles) temperature sensor protocol.'
+ desc = 'National LM75 (and compatibles) temperature sensor.'
license = 'gplv2+'
inputs = ['i2c']
outputs = ['lm75']
diff --git a/sigrokdecode.h.in b/sigrokdecode.h.in
index 6b05b64..033e30e 100644
--- a/sigrokdecode.h.in
+++ b/sigrokdecode.h.in
@@ -99,7 +99,7 @@ extern "C" {
* Use SRD_API to mark public API symbols, and SRD_PRIV for private symbols.
*
* Variables and functions marked 'static' are private already and don't
- * need SR_PRIV. However, functions which are not static (because they need
+ * need SRD_PRIV. However, functions which are not static (because they need
* to be used in other libsigrokdecode-internal files) but are also not
* meant to be part of the public libsigrokdecode API, must use SRD_PRIV.
*