-
-
Notifications
You must be signed in to change notification settings - Fork 40.5k
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
Ardakilic keymap for crkbd added #13745
Conversation
Co-authored-by: Drashna Jaelre <[email protected]>
Co-authored-by: Drashna Jaelre <[email protected]>
Co-authored-by: Drashna Jaelre <[email protected]>
Co-authored-by: Drashna Jaelre <[email protected]>
I have also added EXTRAFLAGS+=-flto to my #define NO_ACTION_MACRO
#define NO_ACTION_FUNCTION to my config.h file. Now it fits. Please check my last commits. I wonder why disabling console does not reduce the size like my initial commit though. |
No need to add those. |
Also, you may want to remove snprint/sprint, because this can take up a LOT of space in the firmwar (1.5kb or more). For rendering numbers, this may be more verbose, but ... uint8_t n = get_current_wpm();
char wpm_counter[4];
wpm_counter[3] = '\0';
wpm_counter[2] = '0' + n % 10;
wpm_counter[1] = (n /= 10) % 10 ? '0' + (n) % 10 : (n / 10) % 10 ? '0' : ' ';
wpm_counter[0] = n / 10 ? '0' + n / 10 : ' ';
oled_write_P(PSTR("WPM: "), false);
oled_write(wpm_counter, false); This renders a 3 digit character, using the WPM value, and removes empty values (eg |
Co-authored-by: Drashna Jaelre <[email protected]>
Thank you for your contribution! |
Thank you for your contribution! |
Are you waiting any further changes from me ? |
Thank you for your contribution! |
Co-authored-by: Drashna Jaelre <[email protected]>
Co-authored-by: Drashna Jaelre <[email protected]>
Co-authored-by: Drashna Jaelre <[email protected]>
Co-authored-by: Drashna Jaelre <[email protected]>
Thanks for the review and merge! 🙏 |
Co-authored-by: Drashna Jaelre <[email protected]> Co-authored-by: Ryan <[email protected]>
Hello, This is further update to qmk#13745 , somehow my commit did not get merged qmk#13745 (comment)
* Further update to #13745 Hello, This is further update to #13745 , somehow my commit did not get merged #13745 (comment) * Update config.h
* Further update to qmk#13745 Hello, This is further update to qmk#13745 , somehow my commit did not get merged qmk#13745 (comment) * Update config.h
Description
My keymap for Corne keyboard. This keymap is optimized for typing Turkish while covering my needs for programming, and is similar to #7643 and #7151
Types of Changes
Issues Fixed or Closed by This PR
Checklist