-
-
Notifications
You must be signed in to change notification settings - Fork 40.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mmoskal/uf2-stm32f103 bootloader support (#19594)
- Loading branch information
Showing
13 changed files
with
276 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,6 +171,7 @@ | |
"stm32-dfu", | ||
"stm32duino", | ||
"tinyuf2", | ||
"uf2boot", | ||
"unknown", | ||
"usbasploader", | ||
"wb32-dfu" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* Copyright 2019 | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "config_common.h" | ||
|
||
#define BACKLIGHT_PWM_DRIVER PWMD2 | ||
#define BACKLIGHT_PWM_CHANNEL 1 | ||
|
||
#define ADC_PIN A0 | ||
|
||
#define RGB_CI_PIN A2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* Copyright 2020 QMK | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/* | ||
* This file was auto-generated by: | ||
* `qmk chibios-confmigrate -i keyboards/handwired/onekey/bluepill/halconf.h -r platforms/chibios/common/configs/halconf.h` | ||
*/ | ||
|
||
#pragma once | ||
|
||
#define HAL_USE_ADC TRUE | ||
|
||
#define HAL_USE_PWM TRUE | ||
|
||
#include_next <halconf.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"keyboard_name": "Onekey Bluepill STM32F103 uf2boot", | ||
"development_board": "bluepill", | ||
"bootloader": "uf2boot", | ||
"matrix_pins": { | ||
"cols": ["B0"], | ||
"rows": ["A7"] | ||
}, | ||
"backlight": { | ||
"pin": "A0" | ||
}, | ||
"rgblight": { | ||
"pin": "A1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* Copyright 2020 QMK | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/* | ||
* This file was auto-generated by: | ||
* `qmk chibios-confmigrate -i keyboards/handwired/onekey/bluepill/mcuconf.h -r platforms/chibios/STM32_F103_STM32DUINO/configs/mcuconf.h` | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include_next <mcuconf.h> | ||
|
||
#undef STM32_ADC_USE_ADC1 | ||
#define STM32_ADC_USE_ADC1 TRUE | ||
|
||
#undef STM32_PWM_USE_TIM2 | ||
#define STM32_PWM_USE_TIM2 TRUE | ||
|
||
#undef STM32_SPI_USE_SPI2 | ||
#define STM32_SPI_USE_SPI2 FALSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Bluepill onekey | ||
|
||
To trigger keypress, short together pins *B0* and *A7*. | ||
|
||
This variant requires the uf2-stm32f103 bootloader to be installed. This can be downloaded from the [uf2-stm32f103 releases page](https://github.com/mmoskal/uf2-stm32f103/releases). | ||
|
||
Double-tap reset to enter bootloader mode. Copy the built uf2 file to the device by dragging the file to the new USB disk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Enter lower-power sleep mode when on the ChibiOS idle thread | ||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* | ||
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
/* | ||
* ST32F103xB memory setup. | ||
*/ | ||
MEMORY | ||
{ | ||
flash0 (rx) : org = 0x08000000 + 16K, len = 128k - 16K | ||
flash1 (rx) : org = 0x00000000, len = 0 | ||
flash2 (rx) : org = 0x00000000, len = 0 | ||
flash3 (rx) : org = 0x00000000, len = 0 | ||
flash4 (rx) : org = 0x00000000, len = 0 | ||
flash5 (rx) : org = 0x00000000, len = 0 | ||
flash6 (rx) : org = 0x00000000, len = 0 | ||
flash7 (rx) : org = 0x00000000, len = 0 | ||
ram0 (wx) : org = 0x20000000, len = 20k | ||
ram1 (wx) : org = 0x00000000, len = 0 | ||
ram2 (wx) : org = 0x00000000, len = 0 | ||
ram3 (wx) : org = 0x00000000, len = 0 | ||
ram4 (wx) : org = 0x00000000, len = 0 | ||
ram5 (wx) : org = 0x00000000, len = 0 | ||
ram6 (wx) : org = 0x00000000, len = 0 | ||
ram7 (wx) : org = 0x00000000, len = 0 | ||
} | ||
|
||
/* For each data/text section two region are defined, a virtual region | ||
and a load region (_LMA suffix).*/ | ||
|
||
/* Flash region to be used for exception vectors.*/ | ||
REGION_ALIAS("VECTORS_FLASH", flash0); | ||
REGION_ALIAS("VECTORS_FLASH_LMA", flash0); | ||
|
||
/* Flash region to be used for constructors and destructors.*/ | ||
REGION_ALIAS("XTORS_FLASH", flash0); | ||
REGION_ALIAS("XTORS_FLASH_LMA", flash0); | ||
|
||
/* Flash region to be used for code text.*/ | ||
REGION_ALIAS("TEXT_FLASH", flash0); | ||
REGION_ALIAS("TEXT_FLASH_LMA", flash0); | ||
|
||
/* Flash region to be used for read only data.*/ | ||
REGION_ALIAS("RODATA_FLASH", flash0); | ||
REGION_ALIAS("RODATA_FLASH_LMA", flash0); | ||
|
||
/* Flash region to be used for various.*/ | ||
REGION_ALIAS("VARIOUS_FLASH", flash0); | ||
REGION_ALIAS("VARIOUS_FLASH_LMA", flash0); | ||
|
||
/* Flash region to be used for RAM(n) initialization data.*/ | ||
REGION_ALIAS("RAM_INIT_FLASH_LMA", flash0); | ||
|
||
/* RAM region to be used for Main stack. This stack accommodates the processing | ||
of all exceptions and interrupts.*/ | ||
REGION_ALIAS("MAIN_STACK_RAM", ram0); | ||
|
||
/* RAM region to be used for the process stack. This is the stack used by | ||
the main() function.*/ | ||
REGION_ALIAS("PROCESS_STACK_RAM", ram0); | ||
|
||
/* RAM region to be used for data segment.*/ | ||
REGION_ALIAS("DATA_RAM", ram0); | ||
REGION_ALIAS("DATA_RAM_LMA", flash0); | ||
|
||
/* RAM region to be used for BSS segment.*/ | ||
REGION_ALIAS("BSS_RAM", ram0); | ||
|
||
/* RAM region to be used for the default heap.*/ | ||
REGION_ALIAS("HEAP_RAM", ram0); | ||
|
||
/* Generic rules inclusion.*/ | ||
INCLUDE rules.ld | ||
|
||
/* Bootloader reset support */ | ||
_board_magic_reg = ORIGIN(ram0) + 16k; /* this is based off the code within backup.c */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright 2023 QMK | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#include "bootloader.h" | ||
|
||
// From mmoskal/uf2-stm32f103's backup.c | ||
#define MAGIC_BOOT 0x544F4F42UL | ||
|
||
// defined by linker script | ||
extern uint32_t _board_magic_reg[]; | ||
#define MAGIC_REG _board_magic_reg[0] | ||
|
||
void bootloader_jump(void) { | ||
MAGIC_REG = MAGIC_BOOT; | ||
NVIC_SystemReset(); | ||
} | ||
|
||
void mcu_reset(void) { | ||
NVIC_SystemReset(); | ||
} | ||
|
||
/* not needed, no two-stage reset */ | ||
void enter_bootloader_mode_if_requested(void) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters