/* * nim_config.h * * Created on: 2025年7月18日 * Author: wulianwei */ #ifndef NIM_CONFIG_H_ #define NIM_CONFIG_H_ #include #include #include "hw_types.h" #include "soc_C6748.h" #include "hw_syscfg0_C6748.h" #include "soc_C6748.h" #include "psc.h" #include "interrupt.h" #include "hal/nim_uart.h" #include "hal/nim_ethernet.h" #include "util/sys_util.h" #include "device/console.h" #include "device/lwip.h" #include "algorithm/emg_util.h" #define SYSCLK_1_FREQ (456000000) #define SYSCLK_2_FREQ (SYSCLK_1_FREQ/2) #define UART_CONSOLE_BASE (SOC_UART_2_REGS) //日志打印串口 #define TCP_SERVER_PORT 2000 //#define STATIC_IP_ADDRESS 0xC0A801C8 //192.168.1.200 //#define UI_IP_ADDRESS 0xC0A801C9 //192.168.1.201 #define UI_IP_ADDRESS 0xC0A80169 //192.168.1.101 #define UI_UDP_PORT 8000 #endif /* NIM_CONFIG_H_ */