Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds keyboard ergodox_extended #23340

Closed
wants to merge 43 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
d1505e1
Somewhat working
Gephorian Mar 10, 2024
8cdf49f
Renames
Gephorian Mar 10, 2024
3df97c0
Remap keys
Gephorian Mar 10, 2024
380339d
Right side mostly working
Gephorian Mar 10, 2024
05303c0
Right side completely working
Gephorian Mar 10, 2024
ce459d9
Progress on the left side
Gephorian Mar 10, 2024
1d34dad
Iteration
Gephorian Mar 24, 2024
7e63733
Put stuff all in one place
Gephorian Mar 24, 2024
02942e7
Partially working, reversed diodes
Gephorian Mar 24, 2024
9aabeea
Working with default keyset
Gephorian Mar 24, 2024
b1d816c
Fix a key
Gephorian Mar 24, 2024
9dc6924
Update license header
Gephorian Mar 24, 2024
01fe827
Update readme
Gephorian Mar 24, 2024
569c399
Add license header to ergodox_extended.c
Gephorian Mar 24, 2024
24b1ca8
Add to ergodox community layouts
Gephorian Mar 25, 2024
7ddc137
Move user settings into "features"
Gephorian Mar 25, 2024
6b67e32
Move user settings into "features"
Gephorian Mar 25, 2024
1a215f3
Add Gephorian keymap to satisfy the linter
Gephorian Mar 24, 2024
9aaa322
Add default_ergodox keymap
Gephorian Mar 25, 2024
206faa6
Remove user layout and stacked layout
Gephorian Mar 25, 2024
0f4e5fd
Un-stack the keymap
Gephorian Mar 25, 2024
bfc6dec
Format info.json
Gephorian Mar 25, 2024
8d76091
Remove ROW_SHIFTER
Gephorian Mar 25, 2024
e36c184
Prettify layout
Gephorian Mar 25, 2024
ba25ee5
Compiles but doesnt work
Gephorian Mar 25, 2024
b408990
Remove ROW2COL option, hardware does not work that way
Gephorian Mar 26, 2024
309ffcc
Merge branch 'ergodox-extended' into ergodox-extended-lite-firmware
Gephorian Mar 26, 2024
54e5212
Reading keys
Gephorian Mar 26, 2024
95c4de8
Disable debounce
Gephorian Mar 26, 2024
21cdc25
Set debounce to 0 (disabled)
Gephorian Mar 26, 2024
288493f
Remove debounce, handled by lite
Gephorian Mar 26, 2024
c29cfb9
Match keymap.c comments to keymap
Gephorian Mar 26, 2024
d00521a
Cleanup
Gephorian Mar 26, 2024
413f4c1
More cleanup
Gephorian Mar 26, 2024
7600b9c
print -> dprint
Gephorian Mar 27, 2024
f563fdd
Cleanup: i2c, pin_t
Gephorian Mar 27, 2024
1e21b87
Use library functions for pin setting/getting
Gephorian Mar 27, 2024
7b4825e
Fix includes in matrix.c
Gephorian Mar 27, 2024
3abe70c
Cleanup
Gephorian Mar 27, 2024
d11c668
Fixed...
Gephorian Mar 27, 2024
51a597f
Remove SWAP_HANDS config
Gephorian Mar 27, 2024
4282a3d
Remove empty file
Gephorian Mar 27, 2024
63b5dae
Move info.json to keyboard.json
Gephorian Jun 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add license header to ergodox_extended.c
  • Loading branch information
Gephorian committed Mar 24, 2024
commit 569c399fda32dc1203cca2e0deb8157e744677e2
18 changes: 18 additions & 0 deletions keyboards/ergodox_extended/ergodox_extended.c
Gephorian marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright 2020 Marcus Young <myoung34@my.apsu.edu>
Copyright 2024 Adam Coleman <gephorian@gmail.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "quantum.h"

#ifdef SWAP_HANDS_ENABLE
Expand Down
Loading