cancel
Showing results for 
Search instead for 
Did you mean: 

Firmware Question after changing from STM32F401RBT6 to STM32F401RCT6

mendez
Associate

Hello,

 

The only difference between STM32F401RBT6 vs STM32F401RCT6 is the memory size, 128KB vs 256KB. 

I have a board in production with the STM32F401RBT6. If I switch to STM32F401RCBT6 (larger memory), can I share the same .hex firmware if I don't exceed 128KB? I think the answer is a big NO; but I just want to avoid two different firmwares. 

Customers are using the DFO for updates.

Thanks for the help!! 

1 ACCEPTED SOLUTION

Accepted Solutions
gbm
Lead III

The answer is big YES. Officially, RCT is a simple superset of of RBT. You may simply forget the extra memory.

View solution in original post

3 REPLIES 3
gbm
Lead III

The answer is big YES. Officially, RCT is a simple superset of of RBT. You may simply forget the extra memory.

The memory usage is a function of the Linker, and the Linker Script. Both these parts likely have the same die. You can check by reading the DEVID value.

Code binary from smaller part will run on larger one. 

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
mendez
Associate

Thanks a lot gbm and Tesla DeLorean!