Hi,
I suppose that you use SPI module of LPC1768 to transfer data as a master.
Pls refer to chapter Chapter 17: LPC176x/5x SPI in UM10360.
You can connect the SCK, MOSI, MISO and any GPIO pins to the slave SPI, connect the GPIO to select slave pin, connect the SCK, MOSI, MISO to slave spi one by one.
After you initialize and configure the spi of LPC1768 in master mode, then you can clear the GPIO(GPIO pin is set up in output mode), then write the SPI data register in either 16 bits or 8 bits, then check the flag bit SPIF in spi status register, after the bit is set, write another data to spi data register, then check flag bit SPIF in spi status register, after the bit is set, write another data to spi data register....., you can set the GPIO pin until all 480 bits data have transferred.
The above method is using polling mode, You can also use interrupt mode to transfer data.
I suppose that we have spi example in the LPCOPEN, pls refer to it.
https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcop...
I suppose that what you said "send 480 bit data in one time" means that the /SS pin of slave keeps LOW during the time you transfer 480 bits. In the case, it is not related to the spi data FIFO deepness.
Hope it can help you
BR
XiangJun Rong