Re-initialize BMS system

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Re-initialize BMS system

ソリューションへジャンプ
2,617件の閲覧回数
ranulf
Contributor IV

The BMS measurement/balance boards with the MC33771 chip (FRDM33771BTPLEVB or in-house equivalent) are used in conjunction with the MCU (S32K144EVB-Q100 or in-house equivalent) and the transceiver board (FRDM33664BEVB or in-house equivalent) as described elsewhere. The MC33771 boards are powered by the battery cells that are attached to them. To get the MCU to reinitialize one or more of them I find that it is necessary to unplug ALL of the MC33771 boards from their associated battery cells and plug them ALL back in again (power-on-reset, POR). If that is not done, there are communication problems. This is not good because if I need to replace only one of the MC33771 boards, performing POR on all of them is inconvenient, adds unnecessary wear on connectors, and adds unnecessary exposure to high voltages.


Is there a way to force a re-initialization of the system without performing POR on ALL of the MC33771 boards?


I have tried software resets of the MC33771 boards with registry writes from Simulink code and have succeeded in messing up communication between the MCU and the MC33771 boards, but the system does not re-initialize when I power-cycle the MCU.

0 件の賞賛
返信
1 解決策
2,573件の閲覧回数
mariuslucianand
NXP Employee
NXP Employee

Hello @ranulf,

I am sorry for my delayed answer. I wonder if recalling the initialization function solves your issue and reinitializes the system without reconnecting the battery modules. Unfortunately, there is no block for that, so you have to insert the following line of code using custom code blocks from Simulink (Simulink Outputs block from the Simulink Coder -> Custom code).

MBDT_BCC_Init();

This will force to call again the initialization process performed when the S32KMCU boot up. Before executing the algorithm it will initialize its peripherals and then send commands via SPI over the TPL network to all of the MC33771Bs. By calling again this line, the initialization commands will be sent again. 

Let's give this a try.

mariuslucianand_0-1622060315627.png

Regards,

Marius

元の投稿で解決策を見る

0 件の賞賛
返信
3 返答(返信)
2,568件の閲覧回数
ranulf
Contributor IV

@mariuslucianandThank you. I assume that I will have make sure that the custom code block is called only once at the beginning and not every time step. Do you think this block should be run before or after the configuration blocks or would it matter?

0 件の賞賛
返信
2,574件の閲覧回数
mariuslucianand
NXP Employee
NXP Employee

Hello @ranulf,

I am sorry for my delayed answer. I wonder if recalling the initialization function solves your issue and reinitializes the system without reconnecting the battery modules. Unfortunately, there is no block for that, so you have to insert the following line of code using custom code blocks from Simulink (Simulink Outputs block from the Simulink Coder -> Custom code).

MBDT_BCC_Init();

This will force to call again the initialization process performed when the S32KMCU boot up. Before executing the algorithm it will initialize its peripherals and then send commands via SPI over the TPL network to all of the MC33771Bs. By calling again this line, the initialization commands will be sent again. 

Let's give this a try.

mariuslucianand_0-1622060315627.png

Regards,

Marius

0 件の賞賛
返信
2,439件の閲覧回数
ranulf
Contributor IV

I tried this approach and it seems to work. In the System Outputs block I added

"MBDT_BCC_Init()" to the field "System Outputs Function Execution Code". I also wrapped the System Outputs block in an enabled subsystem that only executed on the first time step in case this block is normally run every time step. This may not be necessary. The code worked either way. Screenshot 2021-09-25 081029.png