modify description

This commit is contained in:
huang 2023-10-11 17:51:27 +08:00
parent 341cfd34bd
commit 24023fd343
8 changed files with 14 additions and 24 deletions

View File

@ -14,7 +14,7 @@
* @file board.c * @file board.c
* @brief support cortex-m7-emulator-board init configure and start-up * @brief support cortex-m7-emulator-board init configure and start-up
* @version 1.0 * @version 1.0
* @author fudan * @author AIIT XUOS Lab
* @date 2023-09-27 * @date 2023-09-27
*/ */
@ -198,8 +198,5 @@ void InitBoardHardware()
KPrintf("board init done.\n"); KPrintf("board init done.\n");
KPrintf("start kernel...\n"); KPrintf("start kernel...\n");
#ifdef TOOL_USING_OTA
//跳转成功设置lastjumpflag为JUMP_SUCCESS_FLAG
app_clear_jumpflag();
#endif
} }

View File

@ -28,18 +28,18 @@
/** /**
* @file link.lds * @file link.lds
* @brief xidatong-arm32 Linker script * @brief cortex-m7 emulator Linker script
* @version 1.0 * @version 1.0
* @author AIIT XUOS Lab * @author AIIT XUOS Lab
* @date 2021-05-28 * @date 2021-09-27
*/ */
/************************************************* /*************************************************
File name: link.lds File name: link.lds
Description: xidatong-arm32 Linker script Description: cortex-m7 emulator Linker script
Others: take MIMXRT1052xxxxx_flexspi_nor.ld for references Others: take MIMXRT1052xxxxx_flexspi_nor.ld for references
History: History:
1. Date: 2021-05-28 1. Date: 2021-09-27
Author: AIIT XUOS Lab Author: AIIT XUOS Lab
Modification: Modification:
1. add shell cmd table and g_service_table 1. add shell cmd table and g_service_table

View File

@ -28,18 +28,18 @@
/** /**
* @file link.lds * @file link.lds
* @brief xidatong-arm32 Linker script * @brief cortex-m7 emulator Linker script
* @version 1.0 * @version 1.0
* @author AIIT XUOS Lab * @author AIIT XUOS Lab
* @date 2021-05-28 * @date 2021-09-27
*/ */
/************************************************* /*************************************************
File name: link.lds File name: link.lds
Description: xidatong-arm32 Linker script Description:cortex-m7 emulator Linker script
Others: take MIMXRT1052xxxxx_flexspi_nor.ld for references Others: take MIMXRT1052xxxxx_flexspi_nor.ld for references
History: History:
1. Date: 2021-05-28 1. Date: 2021-09-27
Author: AIIT XUOS Lab Author: AIIT XUOS Lab
Modification: Modification:
1. add shell cmd table and g_service_table 1. add shell cmd table and g_service_table

View File

@ -12,10 +12,10 @@
/** /**
* @file connect_gpio.h * @file connect_gpio.h
* @brief define imxrt1052-board gpio function and struct * @brief define m7 emulator gpio function and struct
* @version 2.0 * @version 2.0
* @author AIIT XUOS Lab * @author AIIT XUOS Lab
* @date 2022-03-15 * @date 2023-09-27
*/ */
#ifndef __CONNECT_GPIO_H_ #ifndef __CONNECT_GPIO_H_

View File

@ -12,10 +12,10 @@
/** /**
* @file connect_uart.h * @file connect_uart.h
* @brief define imxrt1052-board usart function and struct * @brief define m7 emulator usart function and struct
* @version 2.0 * @version 2.0
* @author AIIT XUOS Lab * @author AIIT XUOS Lab
* @date 2022-03-15 * @date 2023-09-27
*/ */
#ifndef CONNECT_UART_H #ifndef CONNECT_UART_H

View File

@ -41,8 +41,6 @@ KERNELPATHS += \
-I$(KERNEL_ROOT)/include \ -I$(KERNEL_ROOT)/include \
-I$(KERNEL_ROOT)/resources/include -I$(KERNEL_ROOT)/resources/include
ifeq ($(CONFIG_RESOURCES_LWIP),y) ifeq ($(CONFIG_RESOURCES_LWIP),y)
KERNELPATHS += \ KERNELPATHS += \
-I$(KERNEL_ROOT)/resources/ethernet/LwIP/include \ -I$(KERNEL_ROOT)/resources/ethernet/LwIP/include \

View File

@ -2,16 +2,12 @@ SRC_DIR += api
SRC_DIR += arch SRC_DIR += arch
SRC_DIR += core SRC_DIR += core
SRC_DIR += netif SRC_DIR += netif
SRC_DIR += apps SRC_DIR += apps
LWIP_DIR += api LWIP_DIR += api
LWIP_DIR += arch LWIP_DIR += arch
LWIP_DIR += core LWIP_DIR += core
LWIP_DIR += netif LWIP_DIR += netif
LWIP_DIR += apps LWIP_DIR += apps
include $(KERNEL_ROOT)/compiler.mk include $(KERNEL_ROOT)/compiler.mk

View File

@ -46,7 +46,6 @@
// #define LWIP_API_MSG_DEBUG // #define LWIP_API_MSG_DEBUG
#endif #endif
#ifdef LWIP_DEBUG #ifdef LWIP_DEBUG
#ifdef LWIP_SYS_DEBUG #ifdef LWIP_SYS_DEBUG
#define SYS_DEBUG LWIP_DBG_ON #define SYS_DEBUG LWIP_DBG_ON