Hello @danielmartynek,
Thanks for the answer. There is no second device, only one connected to a TPL transceiver via SPI-TX (master) and SPI-RX (slave). I need to send a wake-up pattern via the MC33664, this requires pulsing the CS pin of the SPI-TX without sending data via MOSI (see the pictures and code below).
One way is to change the polarity of the CS pin (CS idle low /high) by re-initializing the SPI-TX, but maybe there is a better way to control the CS pin?
Figure: MCU TPL transceiver schematics:

Figure: MCU sends wake-up pattern via TPL transceiver

Code: Wake-up pattern suggested by NXP driver
/*Wake up Pattern */
/* CSB_TX low for 25 us. */
BCC_MCU_WriteCsbPin(0);
BCC_MCU_WaitUs(BCC_WAKE_PULSE_US);
/* CSB_TX high for 600 us. */
BCC_MCU_WriteCsbPin(1);
BCC_MCU_WaitUs(BCC_T_WAKE_DELAY_US);
/* CSB_TX low for 25 us. */
BCC_MCU_WriteCsbPin(0);
BCC_MCU_WaitUs(BCC_WAKE_PULSE_US);
Regards,
JoDo