-
Bug
-
Resolution: Unresolved
-
Medium
-
TI Device Drivers
-
TIDRIVERS-5581
-
TIDRIVERS_6_20_00
-
TIDRIVERS_6_30_00
-
https://e2e.ti.com/f/1/t/1121086
The ti_drivers_config.c uart2CC26X2HWAttrs ctsPin and rtsPin entries will not be updated from GPIO_INVALID_INDEX after Flow Control is enabled. The fix involves changing the following from <sdk directory>/source/ti/drivers/.meta/uart2/UART2CC26XX.Board.c.xdt:
from
% ctsPinName = 'ctsPin' in inst ? inst.ctsPinInstance.$name : 'GPIO_INVALID_INDEX'; % rtsPinName = 'rtsPin' in inst ? inst.rtsPinInstance.$name : 'GPIO_INVALID_INDEX';
to
% ctsPinName = 'ctsPinInstance' in inst ? inst.ctsPinInstance.$name : 'GPIO_INVALID_INDEX'; % rtsPinName = 'rtsPinInstance' in inst ? inst.rtsPinInstance.$name : 'GPIO_INVALID_INDEX';