2019-01-18 04:08:14 +10:00
|
|
|
#pragma once
|
2018-07-16 19:25:02 -07:00
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
2021-08-22 02:51:17 +02:00
|
|
|
#include "matrix.h"
|
|
|
|
|
|
2018-07-16 19:25:02 -07:00
|
|
|
extern volatile bool isLeftHand;
|
|
|
|
|
|
2019-08-30 11:19:03 -07:00
|
|
|
void matrix_master_OLED_init(void);
|
2020-02-25 14:10:04 +00:00
|
|
|
void split_pre_init(void);
|
|
|
|
|
void split_post_init(void);
|
2021-08-22 02:51:17 +02:00
|
|
|
|
|
|
|
|
bool transport_master_if_connected(matrix_row_t master_matrix[], matrix_row_t slave_matrix[]);
|
|
|
|
|
bool is_transport_connected(void);
|
2022-10-06 10:52:42 +01:00
|
|
|
|
|
|
|
|
void split_watchdog_update(bool done);
|
|
|
|
|
void split_watchdog_task(void);
|
|
|
|
|
bool split_watchdog_check(void);
|