Other Parts Discussed in Thread: HALCOGEN
Tool/software: Code Composer Studio
I'm trying to achieve spi communication between TMS570LS0232 and a sample chip recently. My goal is that TMS570LS0232 sends read command and the sample chip will return the corresponding data. Now I have some questions and hope get help.
1. Because of the characteristics of sample chip I must use SPI2's SIMO to send command and SPI3's SIMO to get the data from sample chip. So I want to know what I should do to complete the configuration of SPI2 and SPI3's SOMI in HALCOGEN when I don't need to use them. Can I directly keep the default configuration of them?
2.The data type of the command and sample information is uint8, but the data type that HALCOGEN has provided in the function spiTransmitData() is uint16. Is there any ways that I can use to successfully call the function spiTransmitData() and also spiGetData() ?