迁移数据
This commit is contained in:
parent
6985aded2e
commit
cf6d3bc00f
|
@ -16,12 +16,11 @@
|
||||||
#include "bsp_hmi.h"
|
#include "bsp_hmi.h"
|
||||||
#include "drv_w5500.h"
|
#include "drv_w5500.h"
|
||||||
#define APP_HMI_BUF_SIZE (1024 * 4)
|
#define APP_HMI_BUF_SIZE (1024 * 4)
|
||||||
uint8_t hmi_buf[4][APP_HMI_BUF_SIZE] __attribute__((section (".CCM_RAM")));
|
|
||||||
|
|
||||||
/************************************************ETH接口***************************************************/
|
/************************************************ETH接口***************************************************/
|
||||||
static void w5500_rcv_call(uint8_t socket, uint8_t *buf, uint16_t len);
|
static void w5500_rcv_call(uint8_t socket, uint8_t *buf, uint16_t len);
|
||||||
|
|
||||||
ModbusItem w5500_modbus_tcp_array[W5500_MODBUS_NUM];
|
ModbusItem w5500_modbus_tcp_array[W5500_MODBUS_NUM] __attribute__((section (".ccmram")));
|
||||||
W5500_STATIC_INIT(w5500, kSpiDev_3, kGpioType_W5500Cs, w5500_rcv_call);
|
W5500_STATIC_INIT(w5500, kSpiDev_3, kGpioType_W5500Cs, w5500_rcv_call);
|
||||||
|
|
||||||
uint8_t canID_devNumber = 0;
|
uint8_t canID_devNumber = 0;
|
||||||
|
|
|
@ -56,7 +56,7 @@ const uint8_t PRINT_PEC = DISABLED; //!< This is to ENABLED or DISABLED print
|
||||||
register reads and the array lengths must be based
|
register reads and the array lengths must be based
|
||||||
on the number of ICs on the stack
|
on the number of ICs on the stack
|
||||||
******************************************************/
|
******************************************************/
|
||||||
cell_asic BMS_IC[TOTAL_IC]; //!< Global Battery Variable
|
cell_asic BMS_IC[TOTAL_IC] __attribute__((section (".ccmram"))); //!< Global Battery Variable
|
||||||
|
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
Set configuration register. Refer to the data sheet
|
Set configuration register. Refer to the data sheet
|
||||||
|
|
Loading…
Reference in New Issue