From 8e97ae323e25d6ef02202ff516d94ffc51d76ecb Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Wed, 17 Jun 2020 14:32:20 -0700 Subject: [PATCH] airmind_mindpx-v2 Updates for NuttX 9.1.0- airmind_mindpx-v2: defconfig MMCSD enable multiblock --- boards/airmind/mindpx-v2/nuttx-config/nsh/defconfig | 4 ---- boards/airmind/mindpx-v2/nuttx-config/scripts/script.ld | 5 ----- boards/airmind/mindpx-v2/src/can.c | 2 +- boards/airmind/mindpx-v2/src/init.c | 2 +- boards/airmind/mindpx-v2/src/led.c | 2 +- boards/airmind/mindpx-v2/src/usb.c | 2 +- 6 files changed, 4 insertions(+), 13 deletions(-) diff --git a/boards/airmind/mindpx-v2/nuttx-config/nsh/defconfig b/boards/airmind/mindpx-v2/nuttx-config/nsh/defconfig index a5990f9da0..b54c210426 100644 --- a/boards/airmind/mindpx-v2/nuttx-config/nsh/defconfig +++ b/boards/airmind/mindpx-v2/nuttx-config/nsh/defconfig @@ -79,11 +79,9 @@ CONFIG_IDLETHREAD_STACKSIZE=750 CONFIG_LIBC_FLOATINGPOINT=y CONFIG_LIBC_LONG_LONG=y CONFIG_LIBC_STRERROR=y -CONFIG_MAX_WDOGPARMS=2 CONFIG_MEMSET_64BIT=y CONFIG_MEMSET_OPTSPEED=y CONFIG_MMCSD=y -CONFIG_MMCSD_MULTIBLOCK_DISABLE=y CONFIG_MMCSD_SDIO=y CONFIG_MMCSD_SDIOWAIT_WRCOMPLETE=y CONFIG_MM_REGIONS=2 @@ -114,7 +112,6 @@ CONFIG_NSH_STRERROR=y CONFIG_NSH_VARS=y CONFIG_PIPES=y CONFIG_PREALLOC_TIMERS=50 -CONFIG_PREALLOC_WDOGS=50 CONFIG_PRIORITY_INHERITANCE=y CONFIG_PTHREAD_MUTEX_ROBUST=y CONFIG_PTHREAD_STACK_MIN=512 @@ -199,7 +196,6 @@ CONFIG_STM32_WWDG=y CONFIG_SYSTEM_CDCACM=y CONFIG_SYSTEM_NSH=y CONFIG_TASK_NAME_SIZE=24 -CONFIG_TIME_EXTENDED=y CONFIG_UART4_BAUD=57600 CONFIG_UART4_RXBUFSIZE=300 CONFIG_UART4_RXDMA=y diff --git a/boards/airmind/mindpx-v2/nuttx-config/scripts/script.ld b/boards/airmind/mindpx-v2/nuttx-config/scripts/script.ld index 0d19229c01..db27829f89 100644 --- a/boards/airmind/mindpx-v2/nuttx-config/scripts/script.ld +++ b/boards/airmind/mindpx-v2/nuttx-config/scripts/script.ld @@ -89,11 +89,6 @@ SECTIONS *(.gnu.linkonce.r.*) _etext = ABSOLUTE(.); - /* - * This is a hack to make the newlib libm __errno() call - * use the NuttX get_errno_ptr() function. - */ - __errno = get_errno_ptr; } > flash /* diff --git a/boards/airmind/mindpx-v2/src/can.c b/boards/airmind/mindpx-v2/src/can.c index fde25c250d..9d07cf7a35 100644 --- a/boards/airmind/mindpx-v2/src/can.c +++ b/boards/airmind/mindpx-v2/src/can.c @@ -50,7 +50,7 @@ #include #include "chip.h" -#include "up_arch.h" +#include "arm_arch.h" #include "stm32.h" #include "stm32_can.h" diff --git a/boards/airmind/mindpx-v2/src/init.c b/boards/airmind/mindpx-v2/src/init.c index c00df46064..6f03f26915 100644 --- a/boards/airmind/mindpx-v2/src/init.c +++ b/boards/airmind/mindpx-v2/src/init.c @@ -81,7 +81,7 @@ ****************************************************************************/ /* - * Ideally we'd be able to get these from up_internal.h, + * Ideally we'd be able to get these from arm_internal.h, * but since we want to be able to disable the NuttX use * of leds for system indication at will and there is no * separate switch, we need to build independent of the diff --git a/boards/airmind/mindpx-v2/src/led.c b/boards/airmind/mindpx-v2/src/led.c index 0fd0dd5de0..fd26ceb61a 100644 --- a/boards/airmind/mindpx-v2/src/led.c +++ b/boards/airmind/mindpx-v2/src/led.c @@ -47,7 +47,7 @@ #include /* - * Ideally we'd be able to get these from up_internal.h, + * Ideally we'd be able to get these from arm_internal.h, * but since we want to be able to disable the NuttX use * of leds for system indication at will and there is no * separate switch, we need to build independent of the diff --git a/boards/airmind/mindpx-v2/src/usb.c b/boards/airmind/mindpx-v2/src/usb.c index 24771237ed..1f942b04af 100644 --- a/boards/airmind/mindpx-v2/src/usb.c +++ b/boards/airmind/mindpx-v2/src/usb.c @@ -51,7 +51,7 @@ #include #include -#include +#include #include #include "board_config.h"