forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added support for new AT32F415 MCU * Added Generic AT32F415 board * Added document of flashing and bootloader for new MCU * Added support wear leveling driver * Added support SPI driver * Added support WS2812 driver * Added support Serial driver * Added support ADC driver * Added AT-START-F415 onekey
- Loading branch information
1 parent
474cc01
commit 8d68c3d
Showing
33 changed files
with
990 additions
and
62 deletions.
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
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
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,10 @@ | ||
// Copyright 2023-2024 HorrorTroll <https://github.com/HorrorTroll> | ||
// Copyright 2023-2024 Zhaqian <https://github.com/zhaqian12> | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include_next <board.h> | ||
|
||
#undef AT32F415KB | ||
#define AT32F415RC |
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 @@ | ||
// Copyright 2023-2024 HorrorTroll <https://github.com/HorrorTroll> | ||
// Copyright 2023-2024 Zhaqian <https://github.com/zhaqian12> | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#define ADC_PIN A0 |
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,11 @@ | ||
// Copyright 2023-2024 HorrorTroll <https://github.com/HorrorTroll> | ||
// Copyright 2023-2024 Zhaqian <https://github.com/zhaqian12> | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#define HAL_USE_ADC TRUE | ||
|
||
#define HAL_USE_I2C 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,12 @@ | ||
{ | ||
"keyboard_name": "Onekey AT-START-F415", | ||
"processor": "AT32F415", | ||
"bootloader": "at32-dfu", | ||
"matrix_pins": { | ||
"cols": ["B3"], | ||
"rows": ["B4"] | ||
}, | ||
"ws2812": { | ||
"pin": "B0" | ||
} | ||
} |
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,13 @@ | ||
// Copyright 2023-2024 HorrorTroll <https://github.com/HorrorTroll> | ||
// Copyright 2023-2024 Zhaqian <https://github.com/zhaqian12> | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include_next <mcuconf.h> | ||
|
||
#undef AT32_ADC_USE_ADC1 | ||
#define AT32_ADC_USE_ADC1 TRUE | ||
|
||
#undef AT32_I2C_USE_I2C1 | ||
#define AT32_I2C_USE_I2C1 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,3 @@ | ||
# Artery AT-START-F415 Board Onekey | ||
|
||
To trigger keypress, short together pins *B3* and *B4*. |
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 @@ | ||
KEYBOARD_SHARED_EP = yes |
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
55 changes: 55 additions & 0 deletions
55
platforms/chibios/boards/GENERIC_AT32_F415XX/board/board.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio | ||
ChibiOS - Copyright (C) 2023..2024 HorrorTroll | ||
ChibiOS - Copyright (C) 2023..2024 Zhaqian | ||
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. | ||
*/ | ||
|
||
#include "hal.h" | ||
|
||
/** | ||
* @brief PAL setup. | ||
* @details Digital I/O ports static configuration as defined in @p board.h. | ||
* This variable is used by the HAL when initializing the PAL driver. | ||
*/ | ||
#if HAL_USE_PAL || defined(__DOXYGEN__) | ||
const PALConfig pal_default_config = | ||
{ | ||
{VAL_GPIOAODT, VAL_GPIOACFGLR, VAL_GPIOACFGHR}, | ||
{VAL_GPIOBODT, VAL_GPIOBCFGLR, VAL_GPIOBCFGHR}, | ||
#if AT32_HAS_GPIOC | ||
{VAL_GPIOCODT, VAL_GPIOCCFGLR, VAL_GPIOCCFGHR}, | ||
#endif | ||
{VAL_GPIODODT, VAL_GPIODCFGLR, VAL_GPIODCFGHR}, | ||
#if AT32_HAS_GPIOF | ||
{VAL_GPIOFODT, VAL_GPIOFCFGLR, VAL_GPIOFCFGHR}, | ||
#endif | ||
}; | ||
#endif | ||
|
||
/* | ||
* Early initialization code. | ||
* This initialization must be performed just after stack setup and before | ||
* any other initialization. | ||
*/ | ||
void __early_init(void) { | ||
at32_clock_init(); | ||
} | ||
|
||
/* | ||
* Board-specific initialization code. | ||
*/ | ||
void boardInit(void) { | ||
IOMUX->REMAP |= IOMUX_REMAP_SWJTAG_MUX_JTAGDIS; | ||
} |
Oops, something went wrong.