FreeRTOS SPI and printf to terminal via UART

Hi, I am using Atmel SAM4S-EK board and FreeRTOS 7.3.0.
For some reason, after I use ‘freertos_spi_write_packet’ or ‘freertos_spi_read_packet’, the ‘printf’ or ‘sprintf’ and ‘puts’ to terminal does not work.
I use the Atmel ‘configure_console’ function that directs the output to UART.
I want to say the before using the FreeRTOS functions, I see all ‘printf” on the terminal… Can you help?
Thanks,

FreeRTOS SPI and printf to terminal via UART

A single USART port can be configured to operate as either a standard UART or an SPI port (as well as various other types of serial bus).  Are you sure your USART printf output and your SPI port are not using the same physical USART peripheral? Regards.