2014-02-18 14:36:52 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
|
|
|
* http://ugfx.org/license.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-01-21 07:26:24 +00:00
|
|
|
* @file src/gfile/gfile_rules.h
|
2014-02-18 14:36:52 +00:00
|
|
|
* @brief GFILE safety rules header file.
|
|
|
|
*
|
|
|
|
* @addtogroup GFILE
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GFILE_RULES_H
|
|
|
|
#define _GFILE_RULES_H
|
|
|
|
|
|
|
|
#if GFX_USE_GFILE
|
2014-08-14 16:22:02 +00:00
|
|
|
#if GFILE_NEED_PETITFS && GFILE_NEED_FATFS
|
|
|
|
#error "GFILE: Both GFILE_NEED_PETITFS and GFILE_NEED_FATFS cannot both be turned on at the same time."
|
|
|
|
#endif
|
2014-02-18 14:36:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _GFILE_RULES_H */
|
|
|
|
/** @} */
|