fsl_spi_freertos and different config on spi bus

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

fsl_spi_freertos and different config on spi bus

跳至解决方案
585 次查看
PO220
Contributor IV

Hi

 

I'm looking fsl_spi_freertos driver but I need confirmation on what I understand...

 

I use on the same SPI bus several devices that do not have the same configuration (bdrate, phase...) and  I need to manipulate these devices from different tasks (I need mutex)

 

 

For me,  SPI_RTOS_Init function create the mutex and set configuration of the bus (with SPI_MasterInit), in the same function ; so I can not change bus configuration without breaking the mutex.

 

Is there a way to manage this or should I change  the SPI_RTOS_Init function to separate mutex creation and configuration of the bus (as I believe) ?

 

Thank you in advance

标签 (1)
0 项奖励
1 解答
370 次查看
TICS_Fiona
NXP Employee
NXP Employee

Hello PO220

When the same SPI bus is connected with multiple external SPI devices,  and each device is working in different tasks, we can use mutex to ensure only one device is working in the same time.   User can create the mutex in SPI_RTOS_Init function, and lock the mutex when starting a task, unlock it when exist the task. However, when switch the task, the SPI register should be re-configured for the new task. 

Best Regards

Fiona Kuang

TIC - Technical Information Center

-----------------------------------------------------------------------------------------------------------------------

Note: If this post answers your question, please click the Mark Correct button. Thank you!

-----------------------------------------------------------------------------------------------------------------------

在原帖中查看解决方案

0 项奖励
2 回复数
371 次查看
TICS_Fiona
NXP Employee
NXP Employee

Hello PO220

When the same SPI bus is connected with multiple external SPI devices,  and each device is working in different tasks, we can use mutex to ensure only one device is working in the same time.   User can create the mutex in SPI_RTOS_Init function, and lock the mutex when starting a task, unlock it when exist the task. However, when switch the task, the SPI register should be re-configured for the new task. 

Best Regards

Fiona Kuang

TIC - Technical Information Center

-----------------------------------------------------------------------------------------------------------------------

Note: If this post answers your question, please click the Mark Correct button. Thank you!

-----------------------------------------------------------------------------------------------------------------------

0 项奖励
370 次查看
PO220
Contributor IV

Thank you

0 项奖励