be-philippe

Results 18 comments of be-philippe

Actually, `~/.vscode/extensions/platformio.platformio-ide-2.2.1/node_modules/platformio-vscode-debug/dist/extension.js` only handles `derivedFrom=` for ``, not for ``, `` nor ``. I didn't find the sources (non public repository ?), but I did patch it successfuly on my...

Possible solution: ``` void ArduinoLowPowerClass::idle(uint32_t delay) { uint32_t ticks = delay; while (ticks > 0) { uint32_t lastMillis = millis(); idle(); uint32_t delta = millis() - lastMillis; if (delta >...

Sure, I know. But what's the interest ? Without SysTick, delay(), millis(), etc. don't work anymore. If the device is internally driven, say take a measure every so often and...

The way `LowPower.idle()` (the version without parameter) works is perfect for me, just as I said in my initial post. It just needs to be documented. And yes, said documentation...

I find the current situation surprising, as I don't expect `SHOW` to depend on `Foreground` nor `Background` (it took me some time to guess the problem came from interupting the...

Reloading the db48x keymap also changes the keyboard and bezel to the right combination.

Anytime the app completely restarts (either the user killed it by swiping it up, or iOS killed it in need of memory), the problem comes back. Re-selecting the keymap always...

Looks tricky. With 0.9.6, the legacy keyboard appears briefly, then changes to db48x keyboard. Selecting the small yellow i in a circle in the status bar, and then clicking Done...

Yes, I was using GCC 14.2.1 (latest release). I did some quite extensive analysis, and the problem arises here: https://github.com/c3d/db48x/blob/2f11a6e38f0cbcf65032f7208f7cbd80ed4eb4cb/src/locals.cc#L237-L242 Recent compilers keep the `p` variable in a register, and...

That "compiler bug" thing was still bugging me (how could such a bug remain undetected for several years ?), so I gave it more tought, and I found the actual...