5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
20 lines
426 B
Nix
20 lines
426 B
Nix
{ lib, mkspiffs }:
|
|
|
|
# We provide the same presets as the upstream
|
|
|
|
lib.mapAttrs (
|
|
name: { CPPFLAGS }:
|
|
mkspiffs.overrideAttrs {
|
|
inherit CPPFLAGS;
|
|
BUILD_CONFIG_NAME = "-${name}";
|
|
}
|
|
) {
|
|
arduino-esp8266.CPPFLAGS = [
|
|
"-DSPIFFS_USE_MAGIC_LENGTH=0"
|
|
"-DSPIFFS_ALIGNED_OBJECT_INDEX_TABLES=1"
|
|
];
|
|
|
|
arduino-esp32.CPPFLAGS = [ "-DSPIFFS_OBJ_META_LEN=4" ];
|
|
|
|
esp-idf.CPPFLAGS = [ "-DSPIFFS_OBJ_META_LEN=4" ];
|
|
}
|