summaryrefslogtreecommitdiff
path: root/keyboards/viktus/osav2_topre/ec.c
diff options
context:
space:
mode:
authorblindassassin111 <38090555+blindassassin111@users.noreply.github.com>2024-03-01 12:03:56 -0600
committerGitHub <noreply@github.com>2024-03-01 18:03:56 +0000
commit3b76a3a3238723e3dcdaa14c8838df97d63d0980 (patch)
treec85764e873b8d6cf5f835529595f1372958274d1 /keyboards/viktus/osav2_topre/ec.c
parent012b101b2eea7e0ca16fe0d324fe0006832160b2 (diff)
Fixing typos for OSAv2 and OSAv2_Topre (#23161)
Correcting tilde to grave, fixing a typo in ec.c, and removing some comments that were accidentally left in.
Diffstat (limited to 'keyboards/viktus/osav2_topre/ec.c')
-rw-r--r--keyboards/viktus/osav2_topre/ec.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/keyboards/viktus/osav2_topre/ec.c b/keyboards/viktus/osav2_topre/ec.c
index fd2e8fa0ec..076ffc0ba8 100644
--- a/keyboards/viktus/osav2_topre/ec.c
+++ b/keyboards/viktus/osav2_topre/ec.c
@@ -151,16 +151,16 @@ bool ec_matrix_scan(matrix_row_t current_matrix[]) {
switch(row) {
case 0:
switch(col) {
- case 14: // lower threshold for split backspace: left 1U( rest, btm)
- case 15: // lower threshold for 2U backspace: 2U(38 rest, 60 btm)
- reset_pt = 44;
- actuation_pt = 48;
+ case 14: // lower threshold for split backspace: left 1U
+ case 15: // lower threshold for 2U backspace: 2U
+ reset_pt = 48;
+ actuation_pt = 53;
break;
}
break;
case 3:
switch(col) {
- case 14: // Lower threshold for right shift: 1.75U(40 rest, 70 btm)
+ case 14: // Lower threshold for right shift: 1.75U
reset_pt = 48;
actuation_pt = 53;
break;
@@ -168,17 +168,17 @@ bool ec_matrix_scan(matrix_row_t current_matrix[]) {
break;
case 4:
switch(col) {
- case 3: // Lower threshold for left space: col3( rest, btm)
- case 4: // Lower threshold for left space: col4(38 rest, 88 btm)
+ case 3: // Lower threshold for left space: col3
+ case 4: // Lower threshold for left space: col4
reset_pt = 50;
actuation_pt = 60;
break;
- case 5: // Lower threshold for left space: col5( rest, btm)
- case 6: // Lower threshold for left space: col6(40 rest, 80 btm)
+ case 5: // Lower threshold for left space: col5
+ case 6: // Lower threshold for left space: col6
reset_pt = 48;
actuation_pt = 58;
break;
- case 14: // Lower threshold for right shift: 2.75U( rest, btm)
+ case 14: // Lower threshold for right shift: 2.75U
reset_pt = 48;
actuation_pt = 53;
break;