diff options
Diffstat (limited to 'platforms/chibios/converters')
31 files changed, 0 insertions, 577 deletions
diff --git a/platforms/chibios/converters/elite_c_to_elite_pi/pre_converter.mk b/platforms/chibios/converters/elite_c_to_elite_pi/pre_converter.mk deleted file mode 100644 index b38823fa5f..0000000000 --- a/platforms/chibios/converters/elite_c_to_elite_pi/pre_converter.mk +++ /dev/null @@ -1,2 +0,0 @@ -CONVERTER:=platforms/chibios/converters/elite_c_to_rp2040_ce -ACTIVE_CONVERTER:=rp2040_ce diff --git a/platforms/chibios/converters/elite_c_to_helios/pre_converter.mk b/platforms/chibios/converters/elite_c_to_helios/pre_converter.mk deleted file mode 100644 index b38823fa5f..0000000000 --- a/platforms/chibios/converters/elite_c_to_helios/pre_converter.mk +++ /dev/null @@ -1,2 +0,0 @@ -CONVERTER:=platforms/chibios/converters/elite_c_to_rp2040_ce -ACTIVE_CONVERTER:=rp2040_ce diff --git a/platforms/chibios/converters/elite_c_to_liatris/pre_converter.mk b/platforms/chibios/converters/elite_c_to_liatris/pre_converter.mk deleted file mode 100644 index b38823fa5f..0000000000 --- a/platforms/chibios/converters/elite_c_to_liatris/pre_converter.mk +++ /dev/null @@ -1,2 +0,0 @@ -CONVERTER:=platforms/chibios/converters/elite_c_to_rp2040_ce -ACTIVE_CONVERTER:=rp2040_ce diff --git a/platforms/chibios/converters/elite_c_to_rp2040_ce/_pin_defs.h b/platforms/chibios/converters/elite_c_to_rp2040_ce/_pin_defs.h deleted file mode 100644 index b5fd88fc36..0000000000 --- a/platforms/chibios/converters/elite_c_to_rp2040_ce/_pin_defs.h +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2023 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 - -// Bottom row -#define B7 12U -#define D5 13U -#define C7 14U -#define F1 15U -#define F0 16U diff --git a/platforms/chibios/converters/elite_c_to_rp2040_ce/converter.mk b/platforms/chibios/converters/elite_c_to_rp2040_ce/converter.mk deleted file mode 100644 index bfca20cd99..0000000000 --- a/platforms/chibios/converters/elite_c_to_rp2040_ce/converter.mk +++ /dev/null @@ -1,10 +0,0 @@ -# rp2040_ce MCU settings for converting AVR projects -MCU := RP2040 -BOARD := QMK_PM2040 -BOOTLOADER := rp2040 - -# These are defaults based on what has been implemented for RP2040 boards -SERIAL_DRIVER ?= vendor -WS2812_DRIVER ?= vendor -BACKLIGHT_DRIVER ?= software -OPT_DEFS += -DUSB_VBUS_PIN=19U diff --git a/platforms/chibios/converters/elite_c_to_stemcell/_pin_defs.h b/platforms/chibios/converters/elite_c_to_stemcell/_pin_defs.h deleted file mode 100644 index 4458abfa1c..0000000000 --- a/platforms/chibios/converters/elite_c_to_stemcell/_pin_defs.h +++ /dev/null @@ -1,54 +0,0 @@ -// Copyright 2022 Mega Mind (@megamind4089) -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -// Pindefs for v2.0.0 -// https://megamind4089.github.io/STeMCell/pinout/ - -// Left side (front) -#ifdef STEMCELL_UART_SWAP -# define D3 PAL_LINE(GPIOA, 3) -# define D2 PAL_LINE(GPIOA, 2) -#else -# define D3 PAL_LINE(GPIOA, 2) -# define D2 PAL_LINE(GPIOA, 3) -#endif -// GND -// GND -#ifdef STEMCELL_I2C_SWAP -# define D1 PAL_LINE(GPIOB, 6) -# define D0 PAL_LINE(GPIOB, 7) -#else -# define D1 PAL_LINE(GPIOB, 7) -# define D0 PAL_LINE(GPIOB, 6) -#endif - -#define D4 PAL_LINE(GPIOA, 15) -#define C6 PAL_LINE(GPIOB, 3) -#define D7 PAL_LINE(GPIOB, 4) -#define E6 PAL_LINE(GPIOB, 5) -#define B4 PAL_LINE(GPIOB, 8) -#define B5 PAL_LINE(GPIOB, 9) - -// Right side (front) -// RAW -// GND -// RESET -// VCC -#define F4 PAL_LINE(GPIOB, 10) -#define F5 PAL_LINE(GPIOB, 2) -#define F6 PAL_LINE(GPIOB, 1) -#define F7 PAL_LINE(GPIOB, 0) - -#define B1 PAL_LINE(GPIOA, 5) -#define B3 PAL_LINE(GPIOA, 6) -#define B2 PAL_LINE(GPIOA, 7) -#define B6 PAL_LINE(GPIOA, 4) - -// Bottom row -#define B7 PAL_LINE(GPIOC, 13) -#define D5 PAL_LINE(GPIOC, 14) -#define C7 PAL_LINE(GPIOC, 15) -#define F1 PAL_LINE(GPIOA, 0) -#define F0 PAL_LINE(GPIOA, 1) diff --git a/platforms/chibios/converters/elite_c_to_stemcell/converter.mk b/platforms/chibios/converters/elite_c_to_stemcell/converter.mk deleted file mode 100644 index 1bbe9bf09e..0000000000 --- a/platforms/chibios/converters/elite_c_to_stemcell/converter.mk +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2022 Mega Mind (@megamind4089) -# SPDX-License-Identifier: GPL-2.0-or-later - -MCU := STM32F411 -BOARD := STEMCELL -BOOTLOADER := tinyuf2 - -SERIAL_DRIVER ?= usart -WS2812_DRIVER ?= bitbang - -ifeq ($(strip $(STMC_US)), yes) - OPT_DEFS += -DSTEMCELL_UART_SWAP -endif - -ifeq ($(strip $(STMC_IS)), yes) - OPT_DEFS += -DSTEMCELL_I2C_SWAP -endif - 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 deleted file mode 100644 index a693e33011..0000000000 --- a/platforms/chibios/converters/promicro_to_bit_c_pro/_pin_defs.h +++ /dev/null @@ -1,36 +0,0 @@ -// 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 diff --git a/platforms/chibios/converters/promicro_to_bit_c_pro/converter.mk b/platforms/chibios/converters/promicro_to_bit_c_pro/converter.mk deleted file mode 100644 index c0eaee8593..0000000000 --- a/platforms/chibios/converters/promicro_to_bit_c_pro/converter.mk +++ /dev/null @@ -1,12 +0,0 @@ -# nullbits Bit-C PRO MCU settings for converting AVR projects -MCU := RP2040 -BOARD := QMK_PM2040 -BOOTLOADER := rp2040 - -# These are defaults based on what has been implemented for RP2040 boards -SERIAL_DRIVER ?= vendor -WS2812_DRIVER ?= vendor -BACKLIGHT_DRIVER ?= software - -# Tell QMK to use the correct 2nd stage bootloader -OPT_DEFS += -DRP2040_FLASH_W25X10CL diff --git a/platforms/chibios/converters/promicro_to_blok/_pin_defs.h b/platforms/chibios/converters/promicro_to_blok/_pin_defs.h deleted file mode 100644 index 957b84e1a6..0000000000 --- a/platforms/chibios/converters/promicro_to_blok/_pin_defs.h +++ /dev/null @@ -1,36 +0,0 @@ -// 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 16U -#define D0 17U -#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 unused pins to avoid collisions) -#define D5 12U -#define B0 13U diff --git a/platforms/chibios/converters/promicro_to_blok/converter.mk b/platforms/chibios/converters/promicro_to_blok/converter.mk deleted file mode 100644 index 2435dd3407..0000000000 --- a/platforms/chibios/converters/promicro_to_blok/converter.mk +++ /dev/null @@ -1,9 +0,0 @@ -# Boardsource Blok MCU settings for converting AVR projects -MCU := RP2040 -BOARD := QMK_BLOK -BOOTLOADER := rp2040 - -# These are defaults based on what has been implemented for RP2040 boards -SERIAL_DRIVER ?= vendor -WS2812_DRIVER ?= vendor -BACKLIGHT_DRIVER ?= software diff --git a/platforms/chibios/converters/promicro_to_bonsai_c3/pre_converter.mk b/platforms/chibios/converters/promicro_to_bonsai_c3/pre_converter.mk deleted file mode 100644 index a0ef52a6e2..0000000000 --- a/platforms/chibios/converters/promicro_to_bonsai_c3/pre_converter.mk +++ /dev/null @@ -1,2 +0,0 @@ -CONVERTER:=platforms/chibios/converters/promicro_to_proton_c -ACTIVE_CONVERTER:=proton_c diff --git a/platforms/chibios/converters/promicro_to_bonsai_c4/_pin_defs.h b/platforms/chibios/converters/promicro_to_bonsai_c4/_pin_defs.h deleted file mode 100644 index 7e6b8ddaf2..0000000000 --- a/platforms/chibios/converters/promicro_to_bonsai_c4/_pin_defs.h +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright 2022 customMK -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -// Left side (front) -#define D3 PAL_LINE(GPIOB, 7) -#define D2 PAL_LINE(GPIOA, 15) -// GND -// GND -#define D1 PAL_LINE(GPIOB, 9) -#define D0 PAL_LINE(GPIOB, 6) -#define D4 PAL_LINE(GPIOA, 4) -#define C6 PAL_LINE(GPIOB, 8) -#define D7 PAL_LINE(GPIOA, 3) -#define E6 PAL_LINE(GPIOB, 10) -#define B4 PAL_LINE(GPIOA, 8) -#define B5 PAL_LINE(GPIOB, 0) - -// Right side (front) -// RAW -// GND -// RESET -// VCC -#define F4 PAL_LINE(GPIOA, 7) -#define F5 PAL_LINE(GPIOA, 6) -#define F6 PAL_LINE(GPIOA, 5) -#define F7 PAL_LINE(GPIOA, 1) -#define B1 PAL_LINE(GPIOB, 13) -#define B3 PAL_LINE(GPIOB, 14) -#define B2 PAL_LINE(GPIOB, 15) -#define B6 PAL_LINE(GPIOB, 1) - -// LEDs (only D5/B2 uses an actual LED) -// Setting both RX and TX LEDs to the same pin as there -// is only one LED availble -// If this is undesirable, either B0 or B5 can be redefined by -// using #undef and #define to change its assignment -#define B0 PAL_LINE(GPIOB, 2) -#define D5 PAL_LINE(GPIOB, 2)
\ No newline at end of file diff --git a/platforms/chibios/converters/promicro_to_bonsai_c4/converter.mk b/platforms/chibios/converters/promicro_to_bonsai_c4/converter.mk deleted file mode 100644 index 005b7a8160..0000000000 --- a/platforms/chibios/converters/promicro_to_bonsai_c4/converter.mk +++ /dev/null @@ -1,4 +0,0 @@ -# Proton C MCU settings for converting AVR projects -MCU := STM32F411 -BOARD := BONSAI_C4 -BOOTLOADER := stm32-dfu diff --git a/platforms/chibios/converters/promicro_to_bonsai_c4/post_converter.mk b/platforms/chibios/converters/promicro_to_bonsai_c4/post_converter.mk deleted file mode 100644 index 5f49b17f8a..0000000000 --- a/platforms/chibios/converters/promicro_to_bonsai_c4/post_converter.mk +++ /dev/null @@ -1,5 +0,0 @@ -BACKLIGHT_DRIVER ?= pwm -WS2812_DRIVER ?= pwm -SERIAL_DRIVER ?= usart -FLASH_DRIVER ?= spi -EEPROM_DRIVER ?= spi
\ No newline at end of file diff --git a/platforms/chibios/converters/promicro_to_elite_pi/pre_converter.mk b/platforms/chibios/converters/promicro_to_elite_pi/pre_converter.mk deleted file mode 100644 index 7b3130a5e9..0000000000 --- a/platforms/chibios/converters/promicro_to_elite_pi/pre_converter.mk +++ /dev/null @@ -1,2 +0,0 @@ -CONVERTER:=platforms/chibios/converters/promicro_to_rp2040_ce -ACTIVE_CONVERTER:=rp2040_ce diff --git a/platforms/chibios/converters/promicro_to_helios/pre_converter.mk b/platforms/chibios/converters/promicro_to_helios/pre_converter.mk deleted file mode 100644 index 7b3130a5e9..0000000000 --- a/platforms/chibios/converters/promicro_to_helios/pre_converter.mk +++ /dev/null @@ -1,2 +0,0 @@ -CONVERTER:=platforms/chibios/converters/promicro_to_rp2040_ce -ACTIVE_CONVERTER:=rp2040_ce diff --git a/platforms/chibios/converters/promicro_to_kb2040/_pin_defs.h b/platforms/chibios/converters/promicro_to_kb2040/_pin_defs.h deleted file mode 100644 index 0a3110890b..0000000000 --- a/platforms/chibios/converters/promicro_to_kb2040/_pin_defs.h +++ /dev/null @@ -1,36 +0,0 @@ -// 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 18U -#define B3 20U -#define B2 19U -#define B6 10U - -// LEDs (Mapped to QT connector to avoid collisions with button/neopixel) -#define D5 12U -#define B0 13U diff --git a/platforms/chibios/converters/promicro_to_kb2040/converter.mk b/platforms/chibios/converters/promicro_to_kb2040/converter.mk deleted file mode 100644 index 6ffee357b3..0000000000 --- a/platforms/chibios/converters/promicro_to_kb2040/converter.mk +++ /dev/null @@ -1,9 +0,0 @@ -# Adafruit KB2040 MCU settings for converting AVR projects -MCU := RP2040 -BOARD := QMK_PM2040 -BOOTLOADER := rp2040 - -# These are defaults based on what has been implemented for RP2040 boards -SERIAL_DRIVER ?= vendor -WS2812_DRIVER ?= vendor -BACKLIGHT_DRIVER ?= software diff --git a/platforms/chibios/converters/promicro_to_liatris/pre_converter.mk b/platforms/chibios/converters/promicro_to_liatris/pre_converter.mk deleted file mode 100644 index 7b3130a5e9..0000000000 --- a/platforms/chibios/converters/promicro_to_liatris/pre_converter.mk +++ /dev/null @@ -1,2 +0,0 @@ -CONVERTER:=platforms/chibios/converters/promicro_to_rp2040_ce -ACTIVE_CONVERTER:=rp2040_ce diff --git a/platforms/chibios/converters/promicro_to_michi/_pin_defs.h b/platforms/chibios/converters/promicro_to_michi/_pin_defs.h deleted file mode 100644 index ce331b0340..0000000000 --- a/platforms/chibios/converters/promicro_to_michi/_pin_defs.h +++ /dev/null @@ -1,36 +0,0 @@ -// 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 13U -#define C6 4U -#define D7 9U -#define E6 10U -#define B4 11U -#define B5 12U - -// Right side (front) -// RAW -// GND -// RESET -// VCC -#define F4 29U -#define F5 28U -#define F6 27U -#define F7 26U -#define B1 20U -#define B3 19U -#define B2 18U -#define B6 17U - -// LEDs (Mapped to unused pins to avoid collisions) -#define D5 14U -#define B0 15U diff --git a/platforms/chibios/converters/promicro_to_michi/converter.mk b/platforms/chibios/converters/promicro_to_michi/converter.mk deleted file mode 100644 index 4d7178e2f7..0000000000 --- a/platforms/chibios/converters/promicro_to_michi/converter.mk +++ /dev/null @@ -1,9 +0,0 @@ -# Michi MCU settings for converting AVR projects -MCU := RP2040 -BOARD := QMK_PM2040 -BOOTLOADER := rp2040 - -# These are defaults based on what has been implemented for RP2040 boards -SERIAL_DRIVER ?= vendor -WS2812_DRIVER ?= vendor -BACKLIGHT_DRIVER ?= software diff --git a/platforms/chibios/converters/promicro_to_promicro_rp2040/_pin_defs.h b/platforms/chibios/converters/promicro_to_promicro_rp2040/_pin_defs.h deleted file mode 100644 index 0a1f4112a3..0000000000 --- a/platforms/chibios/converters/promicro_to_promicro_rp2040/_pin_defs.h +++ /dev/null @@ -1,36 +0,0 @@ -// 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 QT connector to avoid collisions with button/neopixel) -#define D5 17U -#define B0 16U diff --git a/platforms/chibios/converters/promicro_to_promicro_rp2040/converter.mk b/platforms/chibios/converters/promicro_to_promicro_rp2040/converter.mk deleted file mode 100644 index 03863eeb02..0000000000 --- a/platforms/chibios/converters/promicro_to_promicro_rp2040/converter.mk +++ /dev/null @@ -1,9 +0,0 @@ -# Sparkfun Pro Micro RP2040 MCU settings for converting AVR projects -MCU := RP2040 -BOARD := QMK_PM2040 -BOOTLOADER := rp2040 - -# These are defaults based on what has been implemented for RP2040 boards -SERIAL_DRIVER ?= vendor -WS2812_DRIVER ?= vendor -BACKLIGHT_DRIVER ?= software diff --git a/platforms/chibios/converters/promicro_to_proton_c/_pin_defs.h b/platforms/chibios/converters/promicro_to_proton_c/_pin_defs.h deleted file mode 100644 index ad1a81692e..0000000000 --- a/platforms/chibios/converters/promicro_to_proton_c/_pin_defs.h +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright 2022 QMK -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -// Left side (front) -#define D3 PAL_LINE(GPIOA, 9) -#define D2 PAL_LINE(GPIOA, 10) -// GND -// GND -#define D1 PAL_LINE(GPIOB, 7) -#define D0 PAL_LINE(GPIOB, 6) -#define D4 PAL_LINE(GPIOB, 5) -#define C6 PAL_LINE(GPIOB, 4) -#define D7 PAL_LINE(GPIOB, 3) -#define E6 PAL_LINE(GPIOB, 2) -#define B4 PAL_LINE(GPIOB, 1) -#define B5 PAL_LINE(GPIOB, 0) - -// Right side (front) -// RAW -// GND -// RESET -// VCC -#define F4 PAL_LINE(GPIOA, 2) -#define F5 PAL_LINE(GPIOA, 1) -#define F6 PAL_LINE(GPIOA, 0) -#define F7 PAL_LINE(GPIOB, 8) -#define B1 PAL_LINE(GPIOB, 13) -#define B3 PAL_LINE(GPIOB, 14) -#define B2 PAL_LINE(GPIOB, 15) -#define B6 PAL_LINE(GPIOB, 9) - -// LEDs (only D5/C13 uses an actual LED) -#ifdef CONVERT_TO_PROTON_C_RXLED -# define D5 PAL_LINE(GPIOC, 14) -# define B0 PAL_LINE(GPIOC, 13) -#else -# define D5 PAL_LINE(GPIOC, 13) -# define B0 PAL_LINE(GPIOC, 14) -#endif diff --git a/platforms/chibios/converters/promicro_to_proton_c/converter.mk b/platforms/chibios/converters/promicro_to_proton_c/converter.mk deleted file mode 100644 index 406adae32c..0000000000 --- a/platforms/chibios/converters/promicro_to_proton_c/converter.mk +++ /dev/null @@ -1,8 +0,0 @@ -# Proton C MCU settings for converting AVR projects -MCU := STM32F303 -BOARD := QMK_PROTON_C -BOOTLOADER := stm32-dfu - -# These are defaults based on what has been implemented for ARM boards -AUDIO_ENABLE ?= yes -WS2812_DRIVER ?= bitbang diff --git a/platforms/chibios/converters/promicro_to_proton_c/post_converter.mk b/platforms/chibios/converters/promicro_to_proton_c/post_converter.mk deleted file mode 100644 index 12651bd87c..0000000000 --- a/platforms/chibios/converters/promicro_to_proton_c/post_converter.mk +++ /dev/null @@ -1 +0,0 @@ -BACKLIGHT_DRIVER ?= software diff --git a/platforms/chibios/converters/promicro_to_rp2040_ce/_pin_defs.h b/platforms/chibios/converters/promicro_to_rp2040_ce/_pin_defs.h deleted file mode 100644 index 0109f884d4..0000000000 --- a/platforms/chibios/converters/promicro_to_rp2040_ce/_pin_defs.h +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright 2023 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 -#define D5 12U -#define B0 13U diff --git a/platforms/chibios/converters/promicro_to_rp2040_ce/converter.mk b/platforms/chibios/converters/promicro_to_rp2040_ce/converter.mk deleted file mode 100644 index bfca20cd99..0000000000 --- a/platforms/chibios/converters/promicro_to_rp2040_ce/converter.mk +++ /dev/null @@ -1,10 +0,0 @@ -# rp2040_ce MCU settings for converting AVR projects -MCU := RP2040 -BOARD := QMK_PM2040 -BOOTLOADER := rp2040 - -# These are defaults based on what has been implemented for RP2040 boards -SERIAL_DRIVER ?= vendor -WS2812_DRIVER ?= vendor -BACKLIGHT_DRIVER ?= software -OPT_DEFS += -DUSB_VBUS_PIN=19U diff --git a/platforms/chibios/converters/promicro_to_stemcell/_pin_defs.h b/platforms/chibios/converters/promicro_to_stemcell/_pin_defs.h deleted file mode 100644 index a7b709f837..0000000000 --- a/platforms/chibios/converters/promicro_to_stemcell/_pin_defs.h +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright 2022 Mega Mind (@megamind4089) -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -// Pindefs for v2.0.0 -// https://megamind4089.github.io/STeMCell/pinout/ - -// Left side (front) -#ifdef STEMCELL_UART_SWAP -# define D3 PAL_LINE(GPIOA, 3) -# define D2 PAL_LINE(GPIOA, 2) -#else -# define D3 PAL_LINE(GPIOA, 2) -# define D2 PAL_LINE(GPIOA, 3) -#endif -// GND -// GND -#ifdef STEMCELL_I2C_SWAP -# define D1 PAL_LINE(GPIOB, 6) -# define D0 PAL_LINE(GPIOB, 7) -#else -# define D1 PAL_LINE(GPIOB, 7) -# define D0 PAL_LINE(GPIOB, 6) -#endif - -#define D4 PAL_LINE(GPIOA, 15) -#define C6 PAL_LINE(GPIOB, 3) -#define D7 PAL_LINE(GPIOB, 4) -#define E6 PAL_LINE(GPIOB, 5) -#define B4 PAL_LINE(GPIOB, 8) -#define B5 PAL_LINE(GPIOB, 9) - -// Right side (front) -// RAW -// GND -// RESET -// VCC -#define F4 PAL_LINE(GPIOB, 10) -#define F5 PAL_LINE(GPIOB, 2) -#define F6 PAL_LINE(GPIOB, 1) -#define F7 PAL_LINE(GPIOB, 0) - -#define B1 PAL_LINE(GPIOA, 5) -#define B3 PAL_LINE(GPIOA, 6) -#define B2 PAL_LINE(GPIOA, 7) -#define B6 PAL_LINE(GPIOA, 4) - -// LEDs -#define D5 PAL_LINE(GPIOA, 8) // User LED -#define B0 PAL_LINE(GPIOA, 9) // unconnected pin diff --git a/platforms/chibios/converters/promicro_to_stemcell/converter.mk b/platforms/chibios/converters/promicro_to_stemcell/converter.mk deleted file mode 100644 index 1bbe9bf09e..0000000000 --- a/platforms/chibios/converters/promicro_to_stemcell/converter.mk +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2022 Mega Mind (@megamind4089) -# SPDX-License-Identifier: GPL-2.0-or-later - -MCU := STM32F411 -BOARD := STEMCELL -BOOTLOADER := tinyuf2 - -SERIAL_DRIVER ?= usart -WS2812_DRIVER ?= bitbang - -ifeq ($(strip $(STMC_US)), yes) - OPT_DEFS += -DSTEMCELL_UART_SWAP -endif - -ifeq ($(strip $(STMC_IS)), yes) - OPT_DEFS += -DSTEMCELL_I2C_SWAP -endif - |