Tool/software: TI-RTOS
Hello,
I am currently developing an RTOS based program which configures SPI ports 1 and 2 to communicate with one another: SPI1 as the master and SPI2 as the slave. I currently only have one task dealing with the setup of the SPI registers:
Current task
I would like to split this task into two separate tasks: Task1 would initiate SPI2 and Task2 would intiate SPI1. Do I have to worry about synchronizing the tasks at all? Or can I just simply put them each into different tasks without any other concerns?
Calvin