Daniel Jour

Results 14 comments of Daniel Jour

I'm running into the same issue; VS Code running on Win 10, trying to access file which are in a WSL2 VM, "CMake/Build" output window shows: ~~~ [rollbar] "sourceDirectory" is...

> In the meantime I've managed to make it work by deleting the duplicate slash removal @csuvbakka so a path like `//wsl$/vmname/some/path` works for you? Hm ... testing from powershell...

Regarding the failing CI: This is due to me using `REQUIRE` from unittest++ (since version 1.6.0) but unittest++ on these CI instances is at version 1.4 (from *2008* ..). Thoughts...

The existing tests cover almost none of `Frame`s code; which is why I'd like to extend the tests.

Fixed the 44.2 to 44.1 :)

I've seen this uses `dlopen()`; regarding portability there's [libltdl](https://www.gnu.org/software/libtool/manual/libtool.html#Using-libltdl) which is basically a portable dlopen library. Might be overkill, though. And I'm not sure about whether the licence would be...

For reference, this is how read 24 bits per sample (stereo) works atm: ~~~c++ int32_t s24le_to_int32(unsigned char const * const buf) { uint32_t r = (buf[2] 24 bit signed little...

*edit: The parameters of the function call only become valid after stepping once into the function, so what we see here is a GDB usage error on my side* Adding...

From the linker map: ~~~ 0x3ffc2098 _heap_start = ABSOLUTE (.) 0x40000000 _heap_end = 0x40000000 ~~~ From a backtrack: ~~~ #2 0x400de4e0 in i2s_hal_config_param (hal=0x3ffb9998, hal_cfg=0x3ffb99a4) at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/hal/i2s_hal.c:320 ~~~ **Note** that...

Short note ... renaming `I2SClass I2S1` to `I2SClass I2S1_` to avoid (potentially?) wrong linkage (with `I2S1` being the actual hardware; memory mapped) surprisingly helps; setting up the second I2S this...