Skip to content

Commit 10ea530

Browse files
committed
Armed board support adjustments
1 parent 8f07c28 commit 10ea530

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

variants/ARMED_V1/PeripheralPins.c

-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,6 @@ const PinMap PinMap_SPI_SCLK[] = {
283283
// {PB_10, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, // Mic CLK
284284
// {PB_13, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)},
285285
// {PC_10, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, // I2S3_SCK
286-
287286
{NC, NP, 0}
288287
};
289288
#endif

variants/ARMED_V1/ldscript.ld

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
** File : LinkerScript.ld
66
**
7-
** Abstract : Linker script for STM32F407VGTx Device with
8-
** 1024KByte FLASH, 128KByte RAM
7+
** Abstract : Linker script for STM32F407VETx Device with
8+
** 512KByte FLASH, 128KByte RAM
99
**
1010
** Set heap size, stack size and stack location according
1111
** to application requirements.

variants/ARMED_V1/stm32f4xx_hal_conf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
#define HAL_GPIO_MODULE_ENABLED
7070
#define HAL_I2C_MODULE_ENABLED
7171
/* #define HAL_I2S_MODULE_ENABLED */
72-
/* #define HAL_IWDG_MODULE_ENABLED */
72+
#define HAL_IWDG_MODULE_ENABLED
7373
/* #define HAL_LTDC_MODULE_ENABLED */
7474
/* #define HAL_DSI_MODULE_ENABLED */
7575
#define HAL_PWR_MODULE_ENABLED

variants/ARMED_V1/variant.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -151,12 +151,12 @@ enum {
151151
#define TIMER_SERVO TIM7
152152

153153
// UART Definitions
154-
#define SERIAL_UART_INSTANCE 2 //Connected to ST-Link
154+
#define SERIAL_UART_INSTANCE 4 //Connected to ST-Link
155155

156156
// Default pin used for 'Serial' instance (ex: ST-Link)
157157
// Mandatory for Firmata
158-
#define PIN_SERIAL_RX PA3
159-
#define PIN_SERIAL_TX PA2
158+
#define PIN_SERIAL_RX PC11
159+
#define PIN_SERIAL_TX PC10
160160

161161
#ifdef __cplusplus
162162
} // extern "C"

0 commit comments

Comments
 (0)