Tool/software:
Hi,
I am trying to increase the TX queue size as defined in one of SDK (v7.41) source files:
// ti154stack\high_level\mac_cfg.c /* maximum number of data frames in transmit queue */ #ifndef MAC_CFG_TX_DATA_MAX #define MAC_CFG_TX_DATA_MAX 16 #endif /* maximum number of frames of all types in transmit queue */ #ifndef MAC_CFG_TX_MAX #define MAC_CFG_TX_MAX 40 #endif /* maximum number of frames in receive queue */ #ifndef MAC_CFG_RX_MAX #define MAC_CFG_RX_MAX 16 #endif
I see a few options, one is to define those macros in application\defines\collector.opt
-DMAC_CFG_TX_DATA_MAX=16 -DMAC_CFG_TX_MAX=40 -DMAC_CFG_RX_MAX=16
The other option is in project properties->CCS Build->Arm Linker->Advanced Options->Command File Preprocessing

Could you please advise which is the recommended way? I don't see an easy way to verify if the macros are successfully overridden, also don't want to change the SDK files themselves.
Thanks,
ZL