You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
334 B
15 lines
334 B
/*
|
|
* Copyright (c) 2022, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef LITTLEFS_LFSCONFIG_H_
|
|
#define LITTLEFS_LFSCONFIG_H_
|
|
|
|
#ifndef LITTLEFS_CONFIG_ENABLED
|
|
#define LITTLEFS_CONFIG_ENABLED (0)
|
|
/*!< 1: if LittleFS module is enabled; 0: no littleFS support */
|
|
#endif
|
|
|
|
#endif /* LITTLEFS_LFSCONFIG_H_ */
|
|
|