Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
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" ];
|
|
}
|