SPI MOSI and SCK pulses on oscilloscope
When I try to communicate my STM32L4P5-DK through SPI protocol. I fed the MOSI and SCK pin to the oscilloscope and checked the output there I got several doubts
1) when I send a data 0xAA to the slave ( HAl_SPI_Transmit(&hspi2,0xAA,1,10) ) with the baud rate of 187.5kBits/sec the time period was 5us app(each bit is shifted at falling edge as per my configuration) but here MOSI otput is not as expected 

2) when I try to send 0xFF the expected MOSI output is the MOSI pin should remain high for 8 falling edges of SCK but it was not that I got on the scope.The below picture shown the 0xFF data in MOSI(Yellow) and SCK (Green)

3) also the SCK is not a continuous signal, SCK maintains 0 for each 8 cycles with a regular period of time why?
