Skip to content

Commit

Permalink
Update custom SEND_STRING
Browse files Browse the repository at this point in the history
  • Loading branch information
vomindoraan committed Mar 2, 2019
1 parent f2543c3 commit 012c5ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions users/konstantin/konstantin.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@

#ifdef SEND_STRING_CLEAN
#undef SEND_STRING
#define SEND_STRING(...) { \
uint8_t ss_mods = get_mods(); \
clear_mods(); \
send_string_P(PSTR(__VA_ARGS__)); \
set_mods(ss_mods); \
#define SEND_STRING(string) { \
uint8_t ss_mods = get_mods(); \
clear_mods(); \
send_string_P(PSTR(string)); \
set_mods(ss_mods); \
}
#endif

Expand Down

0 comments on commit 012c5ef

Please sign in to comment.