Migrate MCU and BOOTLOADER to data-driven (#19529)

This commit is contained in:
Ryan
2023-02-08 18:41:46 +11:00
committed by GitHub
parent 3499677b6a
commit f9aeea64c1
4886 changed files with 5301 additions and 14866 deletions

View File

@@ -5,5 +5,7 @@
"vid": "0xFEED",
"pid": "0x6060",
"device_version": "0.0.1"
}
},
"processor": "at90usb1286",
"bootloader": "halfkay"
}

View File

@@ -6,5 +6,7 @@
"pid": "0x6060",
"device_version": "0.0.2"
},
"processor": "at90usb1286",
"bootloader": "halfkay",
"debounce": 20
}

View File

@@ -6,5 +6,7 @@
"pid": "0x345C",
"device_version": "0.0.1"
},
"processor": "MK66FX1M0",
"bootloader": "halfkay",
"debounce": 20
}

View File

@@ -1,6 +1,3 @@
# MCU name
MCU = MK66FX1M0
# Debounce eagerly (report change immediately), keep per-key timers. We can use
# this because the kinT does not have to deal with noise.
DEBOUNCE_TYPE = sym_eager_pk

View File

@@ -6,9 +6,10 @@ BOARD = IC_TEENSY_4_1
MCU = cortex-m4
ARMV = 7
# Bootloader selection
BOOTLOADER = halfkay
# Debounce eagerly (report change immediately), keep per-key timers. We can use
# this because the Cherry MX keyswitches on the Kinesis only produce noise while
# pressed.
DEBOUNCE_TYPE = sym_eager_pk
FIRMWARE_FORMAT = hex

View File

@@ -6,5 +6,7 @@
"pid": "0x345C",
"device_version": "0.0.1"
},
"processor": "MKL26Z64",
"bootloader": "halfkay",
"debounce": 20
}

View File

@@ -1,5 +1,3 @@
# MCU name
MCU = MKL26Z64
# This MCU is not in the main CHIBIOS repo but in the CHIBIOS_CONTRIB repo.
USE_CHIBIOS_CONTRIB = yes

View File

@@ -5,5 +5,7 @@
"vid": "0xFEED",
"pid": "0x6060",
"device_version": "0.0.3"
}
},
"processor": "atmega32u4",
"bootloader": "caterina"
}

View File

@@ -1,9 +1,3 @@
# MCU name
MCU = atmega32u4
# Bootloader selection
BOOTLOADER = caterina
# Build Options
# change yes to no to disable
#

View File

@@ -1,9 +1,3 @@
# MCU name
MCU = at90usb1286
# Bootloader selection
BOOTLOADER = halfkay
# Build Options
# change yes to no to disable
#

View File

@@ -5,5 +5,7 @@
"vid": "0xFEED",
"pid": "0x6060",
"device_version": "0.0.2"
}
},
"processor": "at90usb1286",
"bootloader": "halfkay"
}