diff options
author | Nick Brassel <nick@tzarc.org> | 2021-04-25 13:40:56 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-25 13:40:56 +1000 |
commit | 891d18d3565090abd5f218a8787acc3e25349b73 (patch) | |
tree | a18a24e01c9fa0325d4574e7ff4975021cdaeb84 /keyboards/handwired/onekey/blackpill_f411_tinyuf2/mcuconf.h | |
parent | 2a61a500de6fb286cedf644f56d70d05a0b96f0d (diff) | |
download | qmk_firmware-891d18d3565090abd5f218a8787acc3e25349b73.tar.gz qmk_firmware-891d18d3565090abd5f218a8787acc3e25349b73.zip |
Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600)
* Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example.
* Update flashing.md
* Update chconf.h
* Update config.h
* Update halconf.h
* Update mcuconf.h
Diffstat (limited to 'keyboards/handwired/onekey/blackpill_f411_tinyuf2/mcuconf.h')
-rwxr-xr-x | keyboards/handwired/onekey/blackpill_f411_tinyuf2/mcuconf.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/handwired/onekey/blackpill_f411_tinyuf2/mcuconf.h b/keyboards/handwired/onekey/blackpill_f411_tinyuf2/mcuconf.h new file mode 100755 index 0000000000..ad8aecdb10 --- /dev/null +++ b/keyboards/handwired/onekey/blackpill_f411_tinyuf2/mcuconf.h @@ -0,0 +1,24 @@ +/* Copyright 2021 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 3 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 <https://www.gnu.org/licenses/>. + */ +#pragma once + +#include_next "mcuconf.h" + +#undef STM32_I2C_USE_I2C1 +#define STM32_I2C_USE_I2C1 TRUE + +#undef STM32_PWM_USE_TIM5 +#define STM32_PWM_USE_TIM5 TRUE |