Rodrigo Batista de Moraes
Rodrigo Batista de Moraes
I am hitting the same problem with STM32C011F4P6, passing `-ramsize 4` fixed the problem for me. What appear to be happening is that `strtt` tries to read the entire RAM...
Just discovered that [pyOCD](https://github.com/pyocd/pyOCD) also supports reading RTT console from the ST-LINK: ``` pyocd pack update # install your board, if missing pyocd pack install stm32c011 # pyocd list --targets...
> Why do you use -ramsize 4? STM32C011 has 6 kB. @dufguix I found 4 by try and error. I should use 6, then.
I encountered the same problem on Linux. I fixed it by enabling all requested permissions with the following patch: ```diff diff --git a/common/webview_app.cc b/common/webview_app.cc index 8b8869f..3306015 100644 --- a/common/webview_app.cc +++...
We are evaluating a video calling service and SDK for use in a product running embedded Linux. Do you think it is feasible to use the getstream.io service directly through...
Thanks for looking into it! I tried the changes here, and I now I can enter a call and receive video and audio, but transmitting audio and video is not...
It is just a demo app, based on the quick start from the documentation: lib/main.dart ```dart import 'package:flutter/material.dart'; import 'package:stream_video_flutter/stream_video_flutter.dart'; Future main() async { // Ensure Flutter is able to...
I was able to capture two coredump of the crash with a debug build of neovim, with UBSAN enabled (which is constantly reporting leaked lua objects on exit, is it...
I made a patch to neovim to see if I could trigger the issue early (I though that maybe a invalid node tree was being pushed to the Lua stack)....
Another ASAN report, which points to `tree_gc` as the culprit: ``` ================================================================= ==27213==ERROR: AddressSanitizer: heap-use-after-free on address 0x6080003e6820 at pc 0x55e642940ddd bp 0x7ffc74f3b090 sp 0x7ffc74f3b088 READ of size 1 at...