diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2022-09-29 19:23:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 17:23:02 -0700 |
commit | 26c3e877c7e836d45cb84ec5265fab62e4c90028 (patch) | |
tree | 1a38cc0c43fd28e2ad3a088556e63c3a403288b3 /keyboards/keebio/sinc/rev2/rev2.c | |
parent | 1dd15a8f22d3f497cf0e6226f8bb8e228d806628 (diff) |
[Keyboard] Convert most of sinc to data driven info.json (#18481)
Diffstat (limited to 'keyboards/keebio/sinc/rev2/rev2.c')
-rw-r--r-- | keyboards/keebio/sinc/rev2/rev2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/keebio/sinc/rev2/rev2.c b/keyboards/keebio/sinc/rev2/rev2.c index 47bb1e9e68..a774b76ca0 100644 --- a/keyboards/keebio/sinc/rev2/rev2.c +++ b/keyboards/keebio/sinc/rev2/rev2.c @@ -18,14 +18,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "split_util.h" void matrix_init_kb(void) { - setPinOutput(CAPS_LOCK_LED_PIN); + setPinOutput(LED_CAPS_LOCK_PIN); matrix_init_user(); } bool led_update_kb(led_t led_state) { // Only update if left half if (isLeftHand && led_update_user(led_state)) { - writePin(CAPS_LOCK_LED_PIN, !led_state.caps_lock); + writePin(LED_CAPS_LOCK_PIN, !led_state.caps_lock); } return true; } |