This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
您好!
这是 MCUSDK 8.5的已知问题。 计划在即将发布的版本中修复。
注意 :我在这里讨论的只是一个变通办法,而不是一个干净的修复。
要检查的步骤 :
如果您有本地编译设置、请执行以下步骤。
/*! * \brief CPSW3G default configuration * * Note: If user wishes to change the Resource Partition the following * things must be considered: * 1. Sum of numTxCh allocated to each core should not exceed 8. * 2. Sum of numRxFlows allocated to each core should not exceed 7 (not 8), * as one Rx flow is reserved to the master core. * */ static EnetRm_ResPrms gEnetAppRmDefCfg_3G = { .coreDmaResInfo = { [0] = { .coreId = `module.getCpuID()`, .numTxCh = ENET_SYSCFG_TX_CHANNELS_NUM, /* numTxCh */ .numRxFlows = (ENET_SYSCFG_RX_FLOWS_NUM + 1), /* numRxFlows. Need one additional flow for reserved flow */ .numMacAddress = 3U, /* numMacAddress */ }, }, .numCores = 1U, };
此致
Ashwani