From 4eeafbebabfac04eada98f75dedbecdbbd16298c Mon Sep 17 00:00:00 2001 From: Jay Greco Date: Sat, 13 Aug 2022 06:48:30 -0700 Subject: Add Bit-C PRO converter (#17827) --- .../converters/promicro_to_bit_c_pro/_pin_defs.h | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h (limited to 'platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h') diff --git a/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h b/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h new file mode 100644 index 0000000000..92e8fbfa1a --- /dev/null +++ b/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h @@ -0,0 +1,39 @@ +// Copyright 2022 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +// Left side (front) +#define D3 0U +#define D2 1U +// GND +// GND +#define D1 2U +#define D0 3U +#define D4 4U +#define C6 5U +#define D7 6U +#define E6 7U +#define B4 8U +#define B5 9U + +// Right side (front) +// RAW +// GND +// RESET +// VCC +#define F4 29U +#define F5 28U +#define F6 27U +#define F7 26U +#define B1 22U +#define B3 20U +#define B2 23U +#define B6 21U + +// LEDs (Mapped to R and G channel of the Bit-C PRO's RGB led) +#define D5 16U +#define B0 17U + +// Bit-C LED (mapped to B channel of the Bit-C PRO's RGB led) +#define F0 18U -- cgit v1.2.3 From 7adef85fa4178109998674c1ea9b6166e3dbc7bf Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Thu, 1 Sep 2022 23:38:52 +0100 Subject: Remove non promicro pins from converters (#18239) --- platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h') diff --git a/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h b/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h index 92e8fbfa1a..a693e33011 100644 --- a/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h +++ b/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h @@ -34,6 +34,3 @@ // LEDs (Mapped to R and G channel of the Bit-C PRO's RGB led) #define D5 16U #define B0 17U - -// Bit-C LED (mapped to B channel of the Bit-C PRO's RGB led) -#define F0 18U -- cgit v1.2.3