JM
JM
C++ evaluate integral constat to int, and an int on a small arduino is indeed a int16_t. the fix is to change (2 * 16384) into (2 * 16384**L**), which...
Seems the signature issue has been solved, it's now possible to edit directly the template in the examples. that's an improvement.
this is still very important. Setting also a matrix would be needed. Could this be merged in?
The content of a new sketch is hardcoded https://github.com/arduino/arduino-ide/blob/8c4e66f53628024a97581e668a8fde323192d195/arduino-ide-extension/src/node/sketches-service-impl.ts#L254-L263 that is not great… why not duplicate a default sketch (bareMinimum.ino but user definable would be ideal). (This allows a new...
> So maybe an alternative fix would be to just do e.g. > > ``` > enum { > INPUT = 0x0, > OUTPUT = 0x1, > INPUT_PULLUP = 0x2,...
Hi I missed your point of C compatibility. You are 100% right. Won’t do. My view is that this is for arduino and the compiler is C++ (and so many...
Part of me would say "too bad for those who never understood that type coherence is an important concept"... but I would vote against getting that live too. I've seen...
My guess is that it is to check that the pointer is non NULL as you read from/write to the pointed address in case the if condition is true. -->...
backLen is a pointer, writing `(backLen > 0)` is not correct It drives the warning "_ordered comparison of pointer with integer zero_"