]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
scopes: Move a code comment.
authorUwe Hermann <redacted>
Mon, 24 Apr 2017 13:42:05 +0000 (15:42 +0200)
committerUwe Hermann <redacted>
Sun, 17 Dec 2017 23:38:41 +0000 (00:38 +0100)
hw/hantek-6022be/fw.c
hw/hantek-6022bl/fw.c
hw/sainsmart-dds120/fw.c
include/scope.inc

index 341571a664d5d7263f26d301d5f9be94fe0446e2..e61a32e517e66442c5f22018c841ae46c0850fa4 100644 (file)
@@ -30,7 +30,6 @@
 
 #define SET_CALIBRATION_PULSE(x)
 
-/* Toggle the 1kHz calibration pin, only accurate up to ca. 8MHz. */
 #define TOGGLE_CALIBRATION_PIN() PA7 = !PA7
 
 #define LED_CLEAR() PC0 = 1; PC1 = 1;
index a78350ecca3b4d23a4a84ac7503523e21c9a5164..b2ac50172513622c247e325b70f5ac167465e03c 100644 (file)
@@ -30,7 +30,6 @@
 
 #define SET_CALIBRATION_PULSE(x)
 
-/* Toggle the 1kHz calibration pin, only accurate up to ca. 8MHz. */
 #define TOGGLE_CALIBRATION_PIN() PC2 = !PC2
 
 #define LED_CLEAR() PC0 = 1; PC1 = 1;
index 690eadf6de61aff68e236dfd94cb5390759a475f..d67e7c912f2d80f7fd1904a812bc96f2eaccb8f2 100644 (file)
@@ -30,7 +30,6 @@
 
 #define SET_CALIBRATION_PULSE(x) set_calibration_pulse(x)
 
-/* Toggle the 1kHz calibration pin, only accurate up to ca. 8MHz. */
 /* Note: There's no PE2 as IOE is not bit-addressable (see TRM 15.2). */
 #define TOGGLE_CALIBRATION_PIN() IOE = IOE ^ 0x04
 
index 0145b2b6bebefa4aa78546366ea6d61724ae71de..96422f1bca88fbae0a60f517df62bb919d635bc3 100644 (file)
@@ -74,6 +74,7 @@ void suspend_isr(void) __interrupt SUSPEND_ISR
 
 void timer2_isr(void) __interrupt TF2_ISR
 {
+       /* Toggle the probe calibration pin, only accurate up to ca. 8MHz. */
        TOGGLE_CALIBRATION_PIN();
 
        if (ledcounter && (--ledcounter == 0))