| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * nim_config.h
- *
- * Created on: 2025Äê7ÔÂ18ÈÕ
- * Author: wulianwei
- */
- #ifndef NIM_CONFIG_H_
- #define NIM_CONFIG_H_
- #include <string.h>
- #include <stdio.h>
- #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_ */
|