Remove quantum.h
includes from keyboard custom matrix.c
s (#23371)
This commit is contained in:
parent
76bd5142cf
commit
2dd406f08f
97 changed files with 104 additions and 244 deletions
|
@ -17,10 +17,6 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#include "quantum.h"
|
||||
#include "matrix.h"
|
||||
#include "tca6424.h"
|
||||
#include "abelx.h"
|
||||
|
|
|
@ -14,12 +14,9 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include "util.h"
|
||||
#include "matrix.h"
|
||||
#include "debounce.h"
|
||||
#include "quantum.h"
|
||||
|
||||
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
||||
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
||||
|
|
|
@ -2,10 +2,6 @@
|
|||
* matrix.c
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#include "quantum.h"
|
||||
#include "matrix.h"
|
||||
#include "tca6424.h"
|
||||
#include "m20add.h"
|
||||
|
|
|
@ -2,16 +2,10 @@
|
|||
* matrix.c
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#include <hal.h>
|
||||
#include "quantum.h"
|
||||
#include "matrix.h"
|
||||
#include "timer.h"
|
||||
#include "wait.h"
|
||||
#include "print.h"
|
||||
#include "matrix.h"
|
||||
|
||||
#ifndef DEBOUNCE
|
||||
# define DEBOUNCE 5
|
||||
|
@ -167,16 +161,16 @@ matrix_row_t matrix_get_row(uint8_t row) { return matrix[row]; }
|
|||
|
||||
void matrix_print(void)
|
||||
{
|
||||
printf("\nr/c 01234567\n");
|
||||
xprintf("\nr/c 01234567\n");
|
||||
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
|
||||
printf("%X0: ", row);
|
||||
xprintf("%X0: ", row);
|
||||
matrix_row_t data = matrix_get_row(row);
|
||||
for (int col = 0; col < MATRIX_COLS; col++) {
|
||||
if (data & (1<<col))
|
||||
printf("1");
|
||||
xprintf("1");
|
||||
else
|
||||
printf("0");
|
||||
xprintf("0");
|
||||
}
|
||||
printf("\n");
|
||||
xprintf("\n");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue