-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefs.h
More file actions
31 lines (22 loc) · 657 Bytes
/
defs.h
File metadata and controls
31 lines (22 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* @file defs.h
* @brief Thread and debugging definitions
* @details
* @author Noah Huetter (noahhuetter@gmail.com)
* @date 23 March 2017
*
*
* @addtogroup MAIN
* @{
*/
#ifndef _DEFS_H
#define _DEFS_H
#define DEFS_THD_IDLE_WA_SIZE 0x500
#define DEFS_THD_SHELL_WA_SIZE 2048
#define DEFS_THD_IDLE_NAME "main"
#define DEFS_THD_SHELL_NAME "shell"
/*===========================================================================*/
/* Test defines. Always uncomment for production */
/*===========================================================================*/
#endif
/** @} */