[Keymap] Update Helix:five_rows OLED code (#14427)
* Stop using snprintf() in keymaps/five_rows/oled_display.c. The binary size becomes 1350 bytes smaller. make HELIX=verbose,core-oled helix/rev2/sc:five_rows (104 bytes over) -> (95%, 1256 bytes free) make helix/rev3_5rows:five_rows (528 bytes over) -> (97%, 830 bytes free) * add matrix scan rate display to OLED for keymaps/five_rows * add matrix_output_unselect_delay.c to helix keymaps/five_rows * add GPLv2 header * apply review comment
This commit is contained in:
parent
13b93c212d
commit
85a0c494ff
8 changed files with 256 additions and 28 deletions
|
@ -29,7 +29,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
see tmk_core/common/action_tapping.c */
|
||||
|
||||
#undef OLED_UPDATE_INTERVAL
|
||||
#define OLED_UPDATE_INTERVAL 50
|
||||
#ifdef DEBUG_MATRIX_SCAN_RATE
|
||||
# define OLED_UPDATE_INTERVAL 500
|
||||
#else
|
||||
# define OLED_UPDATE_INTERVAL 50
|
||||
#endif
|
||||
|
||||
// place overrides here
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue