forked from xuos/xiuos
modify description
This commit is contained in:
parent
341cfd34bd
commit
24023fd343
|
@ -14,7 +14,7 @@
|
|||
* @file board.c
|
||||
* @brief support cortex-m7-emulator-board init configure and start-up
|
||||
* @version 1.0
|
||||
* @author fudan
|
||||
* @author AIIT XUOS Lab
|
||||
* @date 2023-09-27
|
||||
*/
|
||||
|
||||
|
@ -198,8 +198,5 @@ void InitBoardHardware()
|
|||
KPrintf("board init done.\n");
|
||||
KPrintf("start kernel...\n");
|
||||
|
||||
#ifdef TOOL_USING_OTA
|
||||
//跳转成功设置lastjumpflag为JUMP_SUCCESS_FLAG
|
||||
app_clear_jumpflag();
|
||||
#endif
|
||||
|
||||
}
|
||||
|
|
|
@ -28,18 +28,18 @@
|
|||
|
||||
/**
|
||||
* @file link.lds
|
||||
* @brief xidatong-arm32 Linker script
|
||||
* @brief cortex-m7 emulator Linker script
|
||||
* @version 1.0
|
||||
* @author AIIT XUOS Lab
|
||||
* @date 2021-05-28
|
||||
* @date 2021-09-27
|
||||
*/
|
||||
|
||||
/*************************************************
|
||||
File name: link.lds
|
||||
Description: xidatong-arm32 Linker script
|
||||
Description: cortex-m7 emulator Linker script
|
||||
Others: take MIMXRT1052xxxxx_flexspi_nor.ld for references
|
||||
History:
|
||||
1. Date: 2021-05-28
|
||||
1. Date: 2021-09-27
|
||||
Author: AIIT XUOS Lab
|
||||
Modification:
|
||||
1. add shell cmd table and g_service_table
|
||||
|
|
|
@ -28,18 +28,18 @@
|
|||
|
||||
/**
|
||||
* @file link.lds
|
||||
* @brief xidatong-arm32 Linker script
|
||||
* @brief cortex-m7 emulator Linker script
|
||||
* @version 1.0
|
||||
* @author AIIT XUOS Lab
|
||||
* @date 2021-05-28
|
||||
* @date 2021-09-27
|
||||
*/
|
||||
|
||||
/*************************************************
|
||||
File name: link.lds
|
||||
Description: xidatong-arm32 Linker script
|
||||
Description:cortex-m7 emulator Linker script
|
||||
Others: take MIMXRT1052xxxxx_flexspi_nor.ld for references
|
||||
History:
|
||||
1. Date: 2021-05-28
|
||||
1. Date: 2021-09-27
|
||||
Author: AIIT XUOS Lab
|
||||
Modification:
|
||||
1. add shell cmd table and g_service_table
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
|
||||
/**
|
||||
* @file connect_gpio.h
|
||||
* @brief define imxrt1052-board gpio function and struct
|
||||
* @brief define m7 emulator gpio function and struct
|
||||
* @version 2.0
|
||||
* @author AIIT XUOS Lab
|
||||
* @date 2022-03-15
|
||||
* @date 2023-09-27
|
||||
*/
|
||||
|
||||
#ifndef __CONNECT_GPIO_H_
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
|
||||
/**
|
||||
* @file connect_uart.h
|
||||
* @brief define imxrt1052-board usart function and struct
|
||||
* @brief define m7 emulator usart function and struct
|
||||
* @version 2.0
|
||||
* @author AIIT XUOS Lab
|
||||
* @date 2022-03-15
|
||||
* @date 2023-09-27
|
||||
*/
|
||||
|
||||
#ifndef CONNECT_UART_H
|
||||
|
|
|
@ -41,8 +41,6 @@ KERNELPATHS += \
|
|||
-I$(KERNEL_ROOT)/include \
|
||||
-I$(KERNEL_ROOT)/resources/include
|
||||
|
||||
|
||||
|
||||
ifeq ($(CONFIG_RESOURCES_LWIP),y)
|
||||
KERNELPATHS += \
|
||||
-I$(KERNEL_ROOT)/resources/ethernet/LwIP/include \
|
||||
|
|
|
@ -2,16 +2,12 @@ SRC_DIR += api
|
|||
SRC_DIR += arch
|
||||
SRC_DIR += core
|
||||
SRC_DIR += netif
|
||||
|
||||
|
||||
SRC_DIR += apps
|
||||
|
||||
LWIP_DIR += api
|
||||
LWIP_DIR += arch
|
||||
LWIP_DIR += core
|
||||
LWIP_DIR += netif
|
||||
|
||||
|
||||
LWIP_DIR += apps
|
||||
|
||||
include $(KERNEL_ROOT)/compiler.mk
|
||||
|
|
|
@ -46,7 +46,6 @@
|
|||
// #define LWIP_API_MSG_DEBUG
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef LWIP_DEBUG
|
||||
#ifdef LWIP_SYS_DEBUG
|
||||
#define SYS_DEBUG LWIP_DBG_ON
|
||||
|
|
Loading…
Reference in New Issue