Fiy style issues
This commit is contained in:
		@@ -70,14 +70,14 @@ struct timing_monitor_info {
 | 
			
		||||
 * You have to call safety_controller_handle
 | 
			
		||||
 * If this function fails, it will hang, because errors in the safety controller are not recoverable
 | 
			
		||||
 */
 | 
			
		||||
void safety_controller_init();
 | 
			
		||||
void safety_controller_init(void);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @brief Handle the safety controller.
 | 
			
		||||
 * @note This function must be executed periodically in order to prevent the watchdog from resetting the firmware
 | 
			
		||||
 * @return 0 if successful
 | 
			
		||||
 */
 | 
			
		||||
int safety_controller_handle();
 | 
			
		||||
int safety_controller_handle(void);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @brief Report one or multiple errors to the safety controller
 | 
			
		||||
@@ -170,13 +170,13 @@ bool safety_controller_get_flags_by_mask(enum safety_flag mask);
 | 
			
		||||
 * @brief Get the count of error flags
 | 
			
		||||
 * @return Error flag count
 | 
			
		||||
 */
 | 
			
		||||
uint32_t safety_controller_get_flag_count();
 | 
			
		||||
uint32_t safety_controller_get_flag_count(void);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @brief Get the count of analog monitors
 | 
			
		||||
 * @return Analog monitor count
 | 
			
		||||
 */
 | 
			
		||||
uint32_t safety_controller_get_analog_monitor_count();
 | 
			
		||||
uint32_t safety_controller_get_analog_monitor_count(void);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @brief Get an error flag's name by its index.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user