]> sigrok.org Git - libsigrok.git/commitdiff
Use 'kHz' (not 'KHz') consistently.
authorUwe Hermann <redacted>
Wed, 26 May 2010 23:51:55 +0000 (01:51 +0200)
committerUwe Hermann <redacted>
Wed, 26 May 2010 23:51:55 +0000 (01:51 +0200)
hardware/zeroplus-logic-cube/analyzer.c
output/common.c

index 7b069e1049be5cd4b394f6298d6eeb5bf3786800..283820b2dbc1e15306757ddbe52c8179b5a40ec9 100644 (file)
@@ -194,7 +194,7 @@ static int __analyzer_set_freq(libusb_device_handle *devh, int freq, int scale)
                reg0 = 5;
                reg2 = 64;
                break;
-       case FREQ_SCALE_KHZ: /* KHz */
+       case FREQ_SCALE_KHZ: /* kHz */
                if (freq >= 500 && freq < 1000) {
                        reg0 = freq * 0.01;
                        divisor = 5;
index 69338f0835b402c25c34fa022a7018d926471b85..1fc5df7d3517f3ce18d0b844c775bf438c6069cb 100644 (file)
@@ -26,7 +26,7 @@
 /**
  * Convert a numeric samplerate value to its "natural" string representation.
  *
- * E.g. a value of 3000000 would be converted to "3 MHz", 20000 to "20 KHz".
+ * E.g. a value of 3000000 would be converted to "3 MHz", 20000 to "20 kHz".
  *
  * @param samplerate The samplerate in Hz.
  * @return A malloc()ed string representation of the samplerate value,
@@ -46,7 +46,7 @@ char *sigrok_samplerate_string(uint64_t samplerate)
        else if (samplerate >= MHZ(1))
                r = snprintf(o, 30, "%" PRIu64 " MHz", samplerate / 1000000);
        else if (samplerate >= KHZ(1))
-               r = snprintf(o, 30, "%" PRIu64 " KHz", samplerate / 1000);
+               r = snprintf(o, 30, "%" PRIu64 " kHz", samplerate / 1000);
        else
                r = snprintf(o, 30, "%" PRIu64 " Hz", samplerate);