This repository has been archived on 2024-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
STS-O7/Core/Inc/example_bring_up.h

19 lines
306 B
C

// Copyright (c) Acconeer AB, 2021
// All rights reserved
#ifndef EXAMPLE_BRING_UP_H_
#define EXAMPLE_BRING_UP_H_
#include <stdbool.h>
/**
* @brief Bring Up example
*
* @return Returns EXIT_SUCCESS if successful, otherwise EXIT_FAILURE
*/
int acc_example_bring_up(int argc, char *argv[]);
#endif