Ivan Grokhotkov
Ivan Grokhotkov
> Isn't the configuration file for users to configure themselves? The reasoning behind this is to simplify the process of using the library for the users of the specific platform....
@brianignacio5 Could you please take a look at this issue?
Thank you for your comment @Jason2866. Indeed, can also generate merged binaries using `esptool.py merge_bin` command, they need to be flashed at the address 0. There has been a feature...
Yes, Intel hex. I did an experiment using [this script to generate a .hex file from an IDF build directory](https://gist.github.com/igrr/c17487c1ea4060161529e5a0d4a49eb1). With the get-started/hello_world example: ``` -rw-r--r-- 1 ivan staff 26K...
> espflash crawls though the stack memory and blindly applies decoding to everything which looks like a 32 bit word. Including to stuff which is is definitely not an IP...
Since these extra instructions are all integer instructions, only fixed-point FFT uses them: https://github.com/espressif/esp-dsp/blob/71514173b58b960173b40c4ade9d15d372770a74/modules/fft/fixed/dsps_fft2r_sc16_aes3.S
Just in case, cc @sstefan1 who is planning to merge the initial support for ESP32-S3 DSP instructions into Espressif's LLVM fork soon.
spiffs directory is empty because it is a submodule. You need to run `git submodule update --init` in mkspiffs directory to fetch the submodule. See the first command line of...
Doesn't look like you are doing anything wrong. But since SPIFFS_write tells that FS is full, it probably really is. Perhaps you can try setting block size to 8192? This...
You might need to specify a few more command line arguments, at the very least the fliesystem size. Default value is 64kB, so probably your data does not fit? Arduino...