µGFX  2.9
version 2.9
gfile_rules.h
Go to the documentation of this file.
1 /*
2  * This file is subject to the terms of the GFX License. If a copy of
3  * the license was not distributed with this file, you can obtain one at:
4  *
5  * http://ugfx.io/license.html
6  */
7 
8 /**
9  * @file src/gfile/gfile_rules.h
10  * @brief GFILE safety rules header file.
11  *
12  * @addtogroup GFILE
13  * @{
14  */
15 
16 #ifndef _GFILE_RULES_H
17 #define _GFILE_RULES_H
18 
19 #if GFX_USE_GFILE
20  #if GFILE_NEED_PETITFS && GFILE_NEED_FATFS
21  #error "GFILE: Both GFILE_NEED_PETITFS and GFILE_NEED_FATFS cannot both be turned on at the same time."
22  #endif
23 #endif
24 
25 #endif /* _GFILE_RULES_H */
26 /** @} */