PHiLIP
app_defaults.h
1 /*
2  * Copyright 2020 Kevin Weiss for HAW Hamburg
3  *
4  * This file is subject to the terms and conditions of the MIT License. See the
5  * file LICENSE in the top level directory for more details.
6  * SPDX-License-Identifier: MIT
7  */
8 
9 /*
10  * app_defaults.h
11  *
12  * Created on: May 17, 2018
13  * Author: kevinweiss
14  */
15 
16 #ifndef APP_DEFAULTS_H_
17 #define APP_DEFAULTS_H_
18 
19 #define FW_REV_MAJOR (1)
20 #define FW_REV_MINOR (2)
21 #define FW_REV_PATCH (0)
22 
23 #define DEFAULT_UART_BAUDRATE 115200
24 #define DEFAULT_UART_PARITY BPT_PARITY_NONE
25 #define DEFAULT_UART_STOP_BITS 0
26 
27 #endif /* APP_DEFAULTS_H_ */