I am using lintx and linrx as GPIO on RM48L952ZWT. I configured LINTX and LINRX as GPIO pins rather than functional pins through Halcogen.
The problem is, I do not see a specific function in lin.c driver to write/read directly to/from LIN pins as GPIO.
Does this mean I will need to write my own interface function for this or write directly to the DSET or DCLR registers for LIN, which by the way do not exist either. I do see uint32 PIO2; /**< 0x0044 Pin Data In Register */; uint32 PIO3; /**< 0x0048 Pin Data Out Register */
If I set CAN to GPIO, I get: uint32 canIoRxGetBit(canBASE_t *node); uint32 canIoTxGetBit(canBASE_t *node) etc...
confused...