Update some changes for AT32F415 (#24766)

* Fixed SPI can't compiled issue

* Added solenoid support and use 256KB ldscript for Onekey board
This commit is contained in:
HorrorTroll 2025-01-04 03:33:22 +07:00 committed by GitHub
parent 9a0f4e586a
commit cc3823f767
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 2 deletions

View File

@ -8,3 +8,7 @@
#define BACKLIGHT_PWM_DRIVER PWMD5
#define BACKLIGHT_PWM_CHANNEL 1
#define SOLENOID_PIN B12
#define SOLENOID_PINS { B12, B13, B14, B15 }
#define SOLENOID_PINS_ACTIVE_STATE { high, high, low }

View File

@ -0,0 +1 @@
MCU_LDSCRIPT = AT32F415xC

View File

@ -249,11 +249,11 @@ bool spi_start_extended(spi_start_config_t *start_config) {
#elif defined(AT32F415)
spiConfig.ctrl1 = 0;
if (lsbFirst) {
if (start_config->lsb_first) {
spiConfig.ctrl1 |= SPI_CTRL1_LTF;
}
switch (mode) {
switch (start_config->mode) {
case 0:
break;
case 1: