Clean up usage of QMK_KEYBOARD_H (#20167)
This commit is contained in:
@@ -15,7 +15,11 @@ You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
#include "matrix.h"
|
||||
#include "host.h"
|
||||
#include "led.h"
|
||||
#include "debug.h"
|
||||
#include "wait.h"
|
||||
#include "uart.h"
|
||||
|
||||
/*
|
||||
@@ -86,9 +90,9 @@ void matrix_init(void)
|
||||
/* print("."); */
|
||||
/* while (uart_read()); */
|
||||
/* uart_write(0x01); */
|
||||
/* _delay_ms(500); */
|
||||
/* wait_ms(500); */
|
||||
/* if (uart_read() == 0xFF) { */
|
||||
/* _delay_ms(500); */
|
||||
/* wait_ms(500); */
|
||||
/* if (uart_read() == 0x04) */
|
||||
/* break; */
|
||||
/* } */
|
||||
@@ -112,7 +116,7 @@ uint8_t matrix_scan(void)
|
||||
switch (code) {
|
||||
case 0xFF: // reset success: FF 04
|
||||
print("reset: ");
|
||||
_delay_ms(500);
|
||||
wait_ms(500);
|
||||
code = uart_read();
|
||||
xprintf("%02X\n", code);
|
||||
if (code == 0x04) {
|
||||
@@ -122,12 +126,12 @@ uint8_t matrix_scan(void)
|
||||
return 0;
|
||||
case 0xFE: // layout: FE <layout>
|
||||
print("layout: ");
|
||||
_delay_ms(500);
|
||||
wait_ms(500);
|
||||
xprintf("%02X\n", uart_read());
|
||||
return 0;
|
||||
case 0x7E: // reset fail: 7E 01
|
||||
print("reset fail: ");
|
||||
_delay_ms(500);
|
||||
wait_ms(500);
|
||||
xprintf("%02X\n", uart_read());
|
||||
return 0;
|
||||
case 0x7F:
|
||||
|
||||
Reference in New Issue
Block a user