Improve string sending (#376)
This commit is contained in:
parent
cc3972e7d6
commit
794aed37a0
2 changed files with 100 additions and 48 deletions
|
@ -1,6 +1,7 @@
|
|||
#ifndef QUANTUM_H
|
||||
#define QUANTUM_H
|
||||
|
||||
#include <avr/pgmspace.h>
|
||||
#include "matrix.h"
|
||||
#include "keymap_common.h"
|
||||
#ifdef BACKLIGHT_ENABLE
|
||||
|
@ -25,6 +26,8 @@
|
|||
#include <avr/io.h>
|
||||
#include <util/delay.h>
|
||||
|
||||
#define SEND_STRING(str) send_string(PSTR(str))
|
||||
|
||||
extern uint32_t default_layer_state;
|
||||
|
||||
#ifndef NO_ACTION_LAYER
|
||||
|
@ -59,7 +62,7 @@ extern uint32_t default_layer_state;
|
|||
#define LEADER_DICTIONARY() if (leading && timer_elapsed(leader_time) > LEADER_TIMEOUT)
|
||||
#endif
|
||||
|
||||
void send_string(char str[]);
|
||||
void send_string(const char *str);
|
||||
|
||||
void matrix_init_kb(void);
|
||||
void matrix_scan_kb(void);
|
||||
|
@ -79,4 +82,4 @@ void audio_on_user(void);
|
|||
void music_on_user(void);
|
||||
void music_scale_user(void);
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue