Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Split commons and rgb sync #2

Merged
merged 22 commits into from
Nov 5, 2019
Merged

Split commons and rgb sync #2

merged 22 commits into from
Nov 5, 2019

Conversation

rpbaptist
Copy link
Owner

@rpbaptist rpbaptist commented Nov 1, 2019

This merges qmk#5998 and qmk#6001

XScorpion2 and others added 19 commits October 26, 2019 09:39
Update quantum/split_common/transport.c

Co-Authored-By: Drashna Jaelre <[email protected]>

Update sync time before bailing

Update quantum/split_common/transport.c

Co-Authored-By: Drashna Jaelre <[email protected]>
## To make a commit, type your commit message and press CTRL-ENTER.
## To cancel the commit, close the window. To sign off on the commit,
## press CTRL-S.
##
## You may also reference or close a GitHub issue with this commit.
## To do so, type `#` followed by the `tab` key.  You will be shown a
## list of issues related to the current repo.  You may also type
## `owner/repo#` plus the `tab` key to reference an issue in a
## different GitHub repo.

diff --git a/keyboards/crkbd/keymaps/rpbaptist/config.h b/keyboards/crkbd/keymaps/rpbaptist/config.h
index 21db4e6e1..d78f78420 100644
--- a/keyboards/crkbd/keymaps/rpbaptist/config.h
+++ b/keyboards/crkbd/keymaps/rpbaptist/config.h
@@ -25,7 +25,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 /* Select hand configuration */
 #define EE_HANDS

-#undef SSD1306OLED
+#ifdef OLED_DRIVER_ENABLE
+  #undef SSD1306OLED
+  #define OLED_TIMEOUT 180000
+#endif

 #define USE_SERIAL_PD2
I think it calls sync timer under the hood?
@rpbaptist rpbaptist force-pushed the split-commons-and-rgb-sync branch from 0133d8f to 47fd495 Compare November 4, 2019 17:44
@rpbaptist rpbaptist force-pushed the split-commons-and-rgb-sync branch from e535f89 to 04ac926 Compare November 5, 2019 11:41
@rpbaptist rpbaptist merged commit bf1c0d6 into master Nov 5, 2019
@rpbaptist rpbaptist deleted the split-commons-and-rgb-sync branch November 5, 2019 13:10
rpbaptist pushed a commit that referenced this pull request Jan 7, 2020
* Add Initial layout configuration.

* Set arduino pro micro's built in RX LED as Numlock

* Enable Autoshift feautre.

* Remove DVORAK layout.

* Add Numpad, update default layer.

* Update AutoShift timeout.

* Beautify ASCII Art.

* Update keymap.

* Add Initial verison of RGB lighting.

* Add Tap dance, hungarian letters.

.Xmodmap example: geripgeri/dotfiles@09f0587

* Update RGB to use only noeeprom functions.

* Change default rgb led color.

* Add `pragma once`.

* Emojis added.

* Add tap dance for hungarian letters, multimedia control, slash/backslash.

* Remove audio related code.

* Add Gaming layer.

* Remove unnecessary code, update copyright.

* Add readme.md

* Implement code review suggestions.

* Implement code review suggestions #2
rpbaptist pushed a commit that referenced this pull request Jan 27, 2020
rpbaptist pushed a commit that referenced this pull request Feb 24, 2020
* make silverbullet44

* comment edit

* venderID

* Fix parentheses in macros, and in general clean up quantum.h (qmk#5021)

* Fix up GPIO macros

* Fix up send string macros

`string` arguments must not be parenthesized

* Fix up miscellaneous macros

* Make indentation uniform (4 spaces)

* Make #ifdef vs #if defined usage consistent

* Reorder standard includes

* Revert indentation changes as per review comments

* Revert #if defined(__AVR__) → #ifdef __AVR__ change

* Change 2 space indent to 4 spaces on a couple of lines

* Replace include guard with #pragma once

* alt+tab

* copy from master:silverbullet44

* adjust for pull request

* clang-format

* create info.json

* Delete new_project.sh

* Update keyboards/silverbullet44/keymaps/default/config.h

Co-Authored-By: Max Rumpf <[email protected]>

* Update keyboards/silverbullet44/silverbullet44.c

Co-Authored-By: Max Rumpf <[email protected]>

* Update keyboards/silverbullet44/silverbullet44.h

Co-Authored-By: Max Rumpf <[email protected]>

* Apply suggestions from Maxr1998

* format default keymap

* Apply suggestions from Maxr1998 (#2)

* Apply suggestions from fauxpark

* fix readme.md

* Apply suggestion from Maxr1998. (custom_keycode to MO(_ADJUST))

* I became a tricky! Hahaha!!

* Add original keymap made by FKML

* deleated at config.h

* Changed Copyright

* Delete
// Defines the keycodes used by our macros in process_record_user
//enum custom_keycodes {
//  QMKBEST = SAFE_RANGE,
//  QMKURL
//};

* Delete bool alt_pressed = false;

* Delete ADJUST

* Delete /

* Delete void matrix_scan_user(void) {

}

void led_set_user(uint8_t usb_led) {

}

* Change Copyright's year.

* Delete adjust

* Delete adjust

* Delete adjust

* 列挙型に変更

* Enclose  keymap with ```.

* Delete
#define _______ KC_TRNS
#define XXXXXXX KC_NO

* Fix indentation.

* Delete some rows.

* Aligned columns of ''readme.md''.

* I got god's keymap...hahaha:)

* Update keyboards/silverbullet44/readme.md

Co-Authored-By: fauxpark <[email protected]>

* Update keyboards/silverbullet44/rules.mk

Co-Authored-By: fauxpark <[email protected]>

Co-authored-by: Konstantin Đorđević <[email protected]>
Co-authored-by: Max Rumpf <[email protected]>
Co-authored-by: Ryan <[email protected]>
rpbaptist pushed a commit that referenced this pull request Oct 12, 2020
* Add Initial layout configuration.

* Set arduino pro micro's built in RX LED as Numlock

* Enable Autoshift feautre.

* Remove DVORAK layout.

* Add Numpad, update default layer.

* Update AutoShift timeout.

* Beautify ASCII Art.

* Update keymap.

* Add Initial verison of RGB lighting.

* Add Tap dance, hungarian letters.

.Xmodmap example: geripgeri/dotfiles@09f0587

* Update RGB to use only noeeprom functions.

* Change default rgb led color.

* Add `pragma once`.

* Emojis added.

* Add tap dance for hungarian letters, multimedia control, slash/backslash.

* Remove audio related code.

* Add Gaming layer.

* Remove unnecessary code, update copyright.

* Add readme.md

* Implement code review suggestions.

* Implement code review suggestions #2

* Remove Auto Shift feature.

* Remove Gaming layer.
rpbaptist pushed a commit that referenced this pull request Aug 2, 2023
)

* Replace Tapping Force Hold feature with Quick Tap Term

* Replace keyboard level TAPPING_FORCE_HOLD with QUICK_TAP_TERM 0

* Deprecate force hold in info_config.json

* Before and after quick tap term unit tests

* Quick tap unit tests iteration

* Keymap config.h correction

* Remove TAPPING_FORCE_HOLD_PER_KEY macros that were missed

* Add two more test cases for quick tap

* Replace TAPPING_FORCE_HOLD with QUICK_TAP_TERM in configs #2

* Replace TAPPING_FORCE_HOLD_PER_KEY with QUICK_TAP_TERM_PER_KEY in configs #2

* Add function declaration for get_quick_tap_term

Co-authored-by: Stefan Kerkmann <[email protected]>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants