Thank you for your reply. I am working with a KL25 part that has a standard SPI component, not a DSPI. The definition for spi_master_user_config_t looks like:
/*!
* @brief Information about a device on the SPI bus.
* @internal gui name="Master configuration" id="spiMasterCfg"
*/
typedef struct SPIUserConfig {
uint32_t bitsPerSec; /*!< SPI baud rate in bits per sec @internal gui name="Clock rate" id="MasterBaudRate" */
spi_clock_polarity_t polarity; /*!< Active high or low clock polarity @internal gui name="Polarity" id="MasterPolarity" */
spi_clock_phase_t phase; /*!< Clock phase setting to change and capture data @internal gui name="Phase" id="MasterPhase" */
spi_shift_direction_t direction; /*!< MSB or LSB data shift direction @internal gui name="Direction" id="MasterDirection" */
/* 16-bit support related members */
#if FSL_FEATURE_SPI_16BIT_TRANSFERS
spi_data_bitcount_mode_t bitCount; /*!< Number of bits (8 or 16) in a transfer @internal gui name="Bit count" id="MasterBitCount" */
#endif
} spi_master_user_config_t;
There is no "isChipSelectContinuous" parameter.