forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added MCU support for ArteryTek AT32F415 (qmk#23445)
- Loading branch information
1 parent
c730a7c
commit 63b1e48
Showing
32 changed files
with
1,065 additions
and
63 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,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 | ||
|
||
#define ADC_PIN A0 | ||
|
||
#define BACKLIGHT_PWM_DRIVER PWMD5 | ||
#define BACKLIGHT_PWM_CHANNEL 1 |
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 | ||
|
||
#define HAL_USE_ADC TRUE | ||
|
||
#define HAL_USE_I2C 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,20 @@ | ||
{ | ||
"keyboard_name": "Onekey AT-START-F415", | ||
"processor": "AT32F415", | ||
"bootloader": "at32-dfu", | ||
"usb": { | ||
"shared_endpoint": { | ||
"keyboard": true | ||
} | ||
}, | ||
"matrix_pins": { | ||
"cols": ["B3"], | ||
"rows": ["B4"] | ||
}, | ||
"backlight": { | ||
"pin": "A0" | ||
}, | ||
"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,16 @@ | ||
// 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 | ||
|
||
#undef AT32_PWM_USE_TMR5 | ||
#define AT32_PWM_USE_TMR5 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
101 changes: 101 additions & 0 deletions
101
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,101 @@ | ||
/* | ||
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" | ||
|
||
/*===========================================================================*/ | ||
/* Driver local definitions. */ | ||
/*===========================================================================*/ | ||
|
||
/*===========================================================================*/ | ||
/* Driver exported variables. */ | ||
/*===========================================================================*/ | ||
|
||
/*===========================================================================*/ | ||
/* Driver local variables and types. */ | ||
/*===========================================================================*/ | ||
|
||
/** | ||
* @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 | ||
|
||
/*===========================================================================*/ | ||
/* Driver local functions. */ | ||
/*===========================================================================*/ | ||
|
||
/*===========================================================================*/ | ||
/* Driver interrupt handlers. */ | ||
/*===========================================================================*/ | ||
|
||
/*===========================================================================*/ | ||
/* Driver exported functions. */ | ||
/*===========================================================================*/ | ||
|
||
/** | ||
* @brief Early initialization code. | ||
* @details System clocks are initialized before everything else. | ||
*/ | ||
void __early_init(void) { | ||
at32_clock_init(); | ||
} | ||
|
||
#if HAL_USE_SDC || defined(__DOXYGEN__) | ||
/** | ||
* @brief SDC card detection. | ||
*/ | ||
bool sdc_lld_is_card_inserted(SDCDriver *sdcp) { | ||
static bool last_status = false; | ||
|
||
if (blkIsTransferring(sdcp)) | ||
return last_status; | ||
return last_status = (bool)palReadPad(GPIOC, GPIOC_PIN11); | ||
} | ||
|
||
/** | ||
* @brief SDC card write protection detection. | ||
*/ | ||
bool sdc_lld_is_write_protected(SDCDriver *sdcp) { | ||
|
||
(void)sdcp; | ||
return false; | ||
} | ||
#endif /* HAL_USE_SDC */ | ||
|
||
/** | ||
* @brief Board-specific initialization code. | ||
* @note You can add your board-specific code here. | ||
*/ | ||
void boardInit(void) { | ||
IOMUX->REMAP |= IOMUX_REMAP_SWJTAG_MUX_JTAGDIS; | ||
} |
Oops, something went wrong.