// Copyright (c) Acconeer AB, 2020-2021
// All rights reserved


#ifndef REF_APP_TANK_LEVEL_H_
#define REF_APP_TANK_LEVEL_H_

#include <stdbool.h>

/**
 * @brief Tank level reference application
 *
 * @return Returns EXIT_SUCCESS if successful, otherwise EXIT_FAILURE
 */
int acc_ref_app_tank_level(int argc, char *argv[]);


#endif