forked from mirrors/qmk_firmware
Fix warnings in process_printer
This commit is contained in:
parent
a619b93e38
commit
109ae2f1e8
3 changed files with 15 additions and 13 deletions
|
@ -20,12 +20,12 @@
|
||||||
bool printing_enabled = false;
|
bool printing_enabled = false;
|
||||||
uint8_t character_shift = 0;
|
uint8_t character_shift = 0;
|
||||||
|
|
||||||
void enabled_printing() {
|
void enable_printing(void) {
|
||||||
printing_enabled = true;
|
printing_enabled = true;
|
||||||
serial_init();
|
serial_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
void disable_printing() {
|
void disable_printing(void) {
|
||||||
printing_enabled = false;
|
printing_enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,9 +41,14 @@ void print_char(char c) {
|
||||||
USB_Init();
|
USB_Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_box_string(uint8_t text[]) {
|
void print_string(char c[]) {
|
||||||
uint8_t len = strlen(text);
|
for(uint8_t i = 0; i < strlen(c); i++)
|
||||||
uint8_t out[len * 3 + 8];
|
print_char(c[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
void print_box_string(const char text[]) {
|
||||||
|
size_t len = strlen(text);
|
||||||
|
char out[len * 3 + 8];
|
||||||
out[0] = 0xDA;
|
out[0] = 0xDA;
|
||||||
for (uint8_t i = 0; i < len; i++) {
|
for (uint8_t i = 0; i < len; i++) {
|
||||||
out[i+1] = 0xC4;
|
out[i+1] = 0xC4;
|
||||||
|
@ -69,14 +74,9 @@ void print_box_string(uint8_t text[]) {
|
||||||
print_string(out);
|
print_string(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_string(char c[]) {
|
|
||||||
for(uint8_t i = 0; i < strlen(c); i++)
|
|
||||||
print_char(c[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool process_printer(uint16_t keycode, keyrecord_t *record) {
|
bool process_printer(uint16_t keycode, keyrecord_t *record) {
|
||||||
if (keycode == PRINT_ON) {
|
if (keycode == PRINT_ON) {
|
||||||
enabled_printing();
|
enable_printing();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (keycode == PRINT_OFF) {
|
if (keycode == PRINT_OFF) {
|
||||||
|
|
|
@ -21,4 +21,6 @@
|
||||||
|
|
||||||
#include "protocol/serial.h"
|
#include "protocol/serial.h"
|
||||||
|
|
||||||
|
bool process_printer(uint16_t keycode, keyrecord_t *record);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -46,7 +46,7 @@ void serial_output(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void enabled_printing() {
|
void enable_printing() {
|
||||||
printing_enabled = true;
|
printing_enabled = true;
|
||||||
serial_output();
|
serial_output();
|
||||||
serial_high();
|
serial_high();
|
||||||
|
@ -82,7 +82,7 @@ void print_string(char c[]) {
|
||||||
|
|
||||||
bool process_printer(uint16_t keycode, keyrecord_t *record) {
|
bool process_printer(uint16_t keycode, keyrecord_t *record) {
|
||||||
if (keycode == PRINT_ON) {
|
if (keycode == PRINT_ON) {
|
||||||
enabled_printing();
|
enable_printing();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (keycode == PRINT_OFF) {
|
if (keycode == PRINT_OFF) {
|
||||||
|
|
Loading…
Reference in a new issue