]> sigrok.org Git - libsigrokdecode.git/commitdiff
Fix a bunch of typos.
authorUwe Hermann <redacted>
Sat, 4 Apr 2015 16:34:42 +0000 (18:34 +0200)
committerUwe Hermann <redacted>
Tue, 7 Apr 2015 00:52:51 +0000 (02:52 +0200)
NEWS
decoders/edid/pd.py
decoders/mx25lxx05d/pd.py
decoders/mxc6225xu/pd.py
decoders/spdif/pd.py
decoders/xfp/pd.py
tests/session.c

diff --git a/NEWS b/NEWS
index bd21b02955e4629f5ee8b70d77d4d4922627c2e2..ec40143befb27461a39cbfa414cf3374a54b7569 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -64,10 +64,10 @@ means it is NOT backwards-compatible and frontends will need updates.
    - Either MISO or MOSI can be optional now, but not both (bug #175).
    - The CS# pin is optional now. If the pin is supplied, it is honored
      (decoding only happens when the pin is asserted). Otherwise decoding will
-     use every CLK edge, regardless of CS# state or CS# existance (bug #152).
+     use every CLK edge, regardless of CS# state or CS# existence (bug #152).
    - Rename the 'SCK' pin to the more common 'CLK'.
    - Output bit-exact annotations and data for use by stacked PDs.
-   - Fix a bug occuring when only MOSI (but not MISO) was supplied.
+   - Fix a bug occurring when only MOSI (but not MISO) was supplied.
  * transitioncounter:
    - Drop the obsolete 'transitioncounter' dummy protocol decoder.
  * uart:
index 3c1ede21f4fee6592ee80c517548ab07f4101d66..b154de7e4e0ad82204afa32b4618646df69ec290 100644 (file)
@@ -333,7 +333,7 @@ class Decoder(srd.Decoder):
                     modestr += est_modes[i] + ', '
         if modestr:
             self.ann_field(offset, offset+2,
-                           'Supported establised modes: %s' % modestr[:-2])
+                           'Supported established modes: %s' % modestr[:-2])
 
     def decode_std_timing(self, offset):
         modestr = ''
index 0217de4dbc9a3a0238fb6c3e06b2311658751efd..b5ccee02e1510a2c3d7c357d5fd4edd8e83619d3 100644 (file)
@@ -252,7 +252,7 @@ class Decoder(srd.Decoder):
             self.ss_block = self.ss
             self.putx([8, ['Command: %s' % cmds[self.state][1]]])
         elif self.cmdstate in (2, 3, 4):
-            # Bytes 2/3/4: Master sends sectror address (24bits, MSB-first).
+            # Bytes 2/3/4: Master sends sector address (24bits, MSB-first).
             self.addr |= (mosi << ((4 - self.cmdstate) * 8))
             # self.putx([0, ['Sector address, byte %d: 0x%02x' % \
             #                (4 - self.cmdstate, mosi)]])
index 8b3dcc993ff830b54cfe3ca42ed382ccc03c1cdc..962f963fa63e137cb976872978b5f51017f58d41 100644 (file)
@@ -97,7 +97,7 @@ class Decoder(srd.Decoder):
         # Bits[7:7]: INT
         int_val = (b >> 7) & 1
         s = 'unchanged and no' if (int_val == 0) else 'changed or'
-        ann = 'INT = %d: Orientation %s shake event occured\n' % (int_val, s)
+        ann = 'INT = %d: Orientation %s shake event occurred\n' % (int_val, s)
 
         # Bits[6:5]: SH[1:0]
         sh = (((b >> 6) & 1) << 1) | ((b >> 5) & 1)
index bd75cffd0d8917869843ffa9fc2bc675a6eef1e5..e6977e26858725a55c6c1998a65a578b1099f513 100644 (file)
@@ -210,7 +210,7 @@ class Decoder(srd.Decoder):
             elif self.preamble == [2, 1, 1, 2]:
                 self.puty([1, ['Preamble B', 'B']])
             else:
-                self.puty([1, ['Unknown Preamble', 'Unkown Prea.', 'U']])
+                self.puty([1, ['Unknown Preamble', 'Unknown Prea.', 'U']])
             self.preamble = []
             self.seen_preamble = True
             self.bitcount = 0
index 9a6543c2404ebf08db5d64ec880993dc48b87200..41aca0dbb4ed3f67d4de5b7d28cd295925bc176d 100644 (file)
@@ -318,7 +318,7 @@ class Decoder(srd.Decoder):
                 self.annotate("Vendor ID", chr(data[i]), cnt, cnt)
 
     # Convert 16-bit two's complement values, with each increment
-    # representing 1/256C, to degrees Celcius.
+    # representing 1/256C, to degrees Celsius.
     def to_temp(self, value):
         if value & 0x8000:
             value = -((value ^ 0xffff) + 1)
index d6895af8f4ec174ee19c785f3ac0f2876f263741..2ca16b3a6da4a15612de9244d9569e34b24fb262 100644 (file)
@@ -204,7 +204,7 @@ START_TEST(test_session_metadata_set_bogus)
        srd_init(NULL);
        srd_session_new(&sess);
 
-       /* Incorrect gvariant type (currently only uint64 is used). */
+       /* Incorrect GVariant type (currently only uint64 is used). */
        conf_check_fail_str(sess, SRD_CONF_SAMPLERATE, "");
        conf_check_fail_str(sess, SRD_CONF_SAMPLERATE, "Foo");