1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/flashdb/include/fdb_cfg.h
Benjamin Valentin 8cc689adf8 pkg: add FlashDB
2023-02-27 18:12:13 +01:00

30 lines
406 B
C

/*
* Copyright (c) 2020, Armink, <armink.ztl@gmail.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief configuration file
*/
#ifndef FDB_CFG_H
#define FDB_CFG_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief disable all debug output unless explicitly requested
*/
#ifndef FDB_DEBUG_ENABLE
#define FDB_PRINT(...)
#endif
#ifdef __cplusplus
}
#endif
#endif /* FDB_CFG_H */