1 #pragma once
2 
3 #include <stdint.h>
4 
5 /**
6  * @brief Main function to initiate Hostboot dump
7  *
8  */
9 
10 namespace watchdog
11 {
12 namespace dump
13 {
14 
15 /**
16  * @brief Initiate Hostboot dump collection
17  *
18  * @param timeout - timeout interval in seconds
19  */
20 void triggerHostbootDump(const uint32_t timeout);
21 
22 } // namespace dump
23 } // namespace watchdog
24