Hi all,
I'm working with stm32f7 custom board and px4 firmware, but my concerns are
with the NuttX FAT32 driver. I have an issue. PX4 logger module writes high
rate data to SD card successfully awhile, until at some point write func
return error 28 (“No space left on device”) while there is a lot
I see that it is possible to use:
make EXTRAFLAGS=
to pass flags to be used during compilation, but there does not seem to be a
way to pass extra
link-time flags. There is EXTRA_LIBS and EXTRA_LIBPATHS but these are used
internally and if I do:
make EXTRA_LIBS= EXTRA_LIBPATHS=
these override
I see that it is possible to use:
make EXTRAFLAGS=
to pass flags to be used during compilation, but there does not seem to be a
way to pass extra
link-time flags. There is EXTRA_LIBS and EXTRA_LIBPATHS but these are used
internally and if I do:
make EXTRA_LIBS= EXTRA_LIBPATHS=
these over
This does not seem to work (maybe it was before, from what I read here:
https://stackoverflow.com/questions/2129391/append-to-gnu-make-variables-via-command-line).
The "override" directive is another option but this requires using it
everywhere.
On Mon, Sep 7, 2020, at 17:13, Gregory Nutt wrote