Maximilian Gerhardt
Maximilian Gerhardt
I don't see why a software SPI would not be possible on a ch32v003. All it needs for that are functioning GPIO pins. There are lots of example codes like...
https://blog.arduino.cc/2024/07/24/the-end-of-mbed-marks-a-new-beginning-for-arduino/
You cannot fully use ```ini platform_packages = framework-arduino-openwch-ch32@https://github.com/openwch/arduino_core_ch32.git ``` because many parts of the PlatformIO builder script are not merged into that repository yet. This depends on https://github.com/openwch/arduino_core_ch32/pull/147. Canonically, for...
It shouldn't happen at all that a regular upload with OpenOCD or `wlink` or whatever touches the option bytes of the board. With what `platformio.ini` is it? How do you...
Sounds very similiar to https://github.com/microsoft/vscode-cpptools/issues/9765.
Language server logs from from the start: (Note that although I set the "display language" to `en`, it still shows all messages in german..): ```txt loggingLevel: Debug cpptools/didChangeCppProperties Es wird...
I also see that your extension tries to interrogate the compiler with alternating `-m64` and `-m32` flags, which are totally not supported in the xtensa gcc, so that immediately fails.....
But based on the C/C++ extension log given above, the compiler already tells the extension that ``` Define-Anweisung: __SIZEOF_POINTER__=4 Define-Anweisung: __SIZE_TYPE__=unsigned int ``` the extension just doesn't make use of...
Still an existing issue. When configured for a 32-bit RISC-V GCC, it shows a pointer size of 8 byte (64 bit) and not the correct 4 byte (32 bit).
Still an existing issue. When configured for an eZ80 clang compiler (https://github.com/AgonPlatform/agondev) configured to emit eZ80 ADL, an `int` is actually 24 bits, as reflected in the builtin `__SIZEOF_INT__`, which...