Per Tillisch
Per Tillisch
I've been doing a bit more investigation and experimentation with problem matchers lately. I am now using [`liskin/gh-problem-matcher-wrap`](https://github.com/liskin/gh-problem-matcher-wrap) in some non-sketch compilation workflows (flake8, pytest, ShellCheck) and have been happy...
>How about your board @per1234? @MCUdude that component on my board looks the same as yours. >Who do we report this to? I think your comment here will serve to...
>is there any way to get a replacement for this board? Please contact Arduino Store support here: https://store.arduino.cc/store-support
> This is probably due to the security restriction of exec() that is used by Arduino That is correct. It is documented here: https://pkg.go.dev/os/exec#hdr-Executables_in_the_current_directory > will not resolve a program...
@facchinm I'm really struggling to understand this. AVRDUDE's recommended SYSCFG0 fuse value only changes reserved bit 2 from `0` to `1`, but leaves the other reserved fuse bits 1, 4,...
Unfortunately I don't have any ATmega4809 other than on my Uno WiFi Rev2 and Nano Every boards and none of the component suppliers I checked have stock. Do you happen...
Hi @BenjaminDannegard. I don't know anyone involved with the TensorFlow project. I only received the library removal request from them as part of my duties maintaining the Arduino Library Manager...
>is there any plan to fix this in IDE 2? There are a couple of proposals for doing such a thing at the library or sketch level (keep in mind...
Hi @ZedOud. Please add a comment here that provides detailed instructions I can follow to reproduce the problem. --- Here is an example of the sort of instructions I need:...
The problem seems to be specific to libraries. Here is a minimal reproduction: Sketch: ```cpp #include void setup() { foo(); } void loop() {} ``` Library: **`Foo.h`**: ```cpp void foo();...