Hello Slavko,
At the moment, I am not aware of an example project combining these components.
The examples you mentioned are the relevant reference points:
- Sbc_fs26_example_HLD_S32K344
This demonstrates the FS26/SBC integration, but it does not use FreeRTOS.
- FreeRTOS_Toggle_Led_Example_S32K344
This demonstrates a basic FreeRTOS setup on S32K344, but it does not include the FS26 SBC component.
- MR_CANHUBK3_IEEE1722
This includes a broader system-level implementation, but the FS26 watchdog is disabled and the Sbc_fs26 component is not used.
For your use case, the practical approach would be to start from the Sbc_fs26_example_HLD_S32K344 project and then integrate the FreeRTOS configuration from the FreeRTOS example. The FS26 initialization should remain part of the system startup sequence, while the watchdog refresh should be handled periodically from a FreeRTOS task or another deterministic timing mechanism.
BRs, Tomas