acc_exploration_server_stm32.h
Go to the documentation of this file.
1
// Copyright (c) Acconeer AB, 2021-2022
2
// All rights reserved
3
4
#ifndef ACC_EXPLORATION_SERVER_STM32_H_
5
#define ACC_EXPLORATION_SERVER_STM32_H_
6
7
#include "
acc_exploration_server_base.h
"
8
9
/**
10
* @brief Init the stm32 exploration server
11
*
12
* @param[in] hw The name of the hardware platform
13
* @param[in] buffer The buffer used for receiving commands from the client
14
* @param[in] buffer_size The size of the command buffer
15
*/
16
void
acc_exploration_server_stm32_init
(
const
char
*hw,
char
*buffer,
size_t
buffer_size);
17
18
19
/**
20
* @brief Start the stm32 exploration server
21
*/
22
void
acc_exploration_server_stm32_main
(
void
);
23
24
25
#endif
acc_exploration_server_base.h
acc_exploration_server_stm32_init
void acc_exploration_server_stm32_init(const char *hw, char *buffer, size_t buffer_size)
Init the stm32 exploration server.
Definition:
acc_exploration_server_stm32.c:142
acc_exploration_server_stm32_main
void acc_exploration_server_stm32_main(void)
Start the stm32 exploration server.
Definition:
acc_exploration_server_stm32.c:150