Maximilian Gerhardt
Maximilian Gerhardt
You can only give it a completely new [`upload_command`](https://docs.platformio.org/en/latest/projectconf/section_env_upload.html#upload-command) but you can't un-flags only some parts of the command (if you don't want to modify `builder/main.py`)
>genericSTM32F103VB/VC/VD/VE > >The clock frequency is set to 64MHz instead of 72MHz. Board maps to variant https://github.com/platformio/platform-ststm32/blob/9ce784b031f5fb0dfac6dd5cda33ef4ab58191db/boards/genericSTM32F103VB.json#L19 And https://github.com/stm32duino/Arduino_Core_STM32/tree/main/variants/STM32F1xx/F103V8(H-T)_F103VB(H-I-T) only has one clock code in [generic_clock.c](https://github.com/stm32duino/Arduino_Core_STM32/blob/main/variants/STM32F1xx/F103V8(H-T)_F103VB(H-I-T)/generic_clock.c). If the USB communication...
`board = bluepill_f103c8` shows F_CPU = 72000000 because [its clock code configures it to do so](https://github.com/stm32duino/Arduino_Core_STM32/blob/main/variants/STM32F1xx/F103C8T_F103CB(T-U)/variant_PILL_F103Cx.cpp#L103-L108), HSE (=8MHz) / 1 * 9 = 72 MHz. `board = genericSTM32F103C8` shows F_CPU...
No, because that's the maximum frequency of the chip. People can still use `board = genericSTM32F103C8` and achieve 72MHz if they add the clock init code. And the chip supports...
Problem: The STM32Cube package doesn't contain the actual core code (RTX) from CMSIS-RTOS2!  Compare to https://github.com/ARM-software/CMSIS_5/tree/develop/CMSIS/RTOS2, the entire RTX folder is missing. Is this due to licensing issues? Or...
Are you 100% sure you checked out the `old_platform` branch of the project per instructions? It's using platform-espressif8266 2.2.0 https://github.com/maxgerhardt/pio-old-esp8266/blob/9c3713fcad0179472daadfdc98663ccf04991903/platformio.ini#L37-L41
That is also the workaround I proposed in the thread. While that works, many users may be confused why the upload task isn't there in the project and just give...
@ivankravets I can definitely do an upgrade of all current SPL versions so that they're all up-to-date and then change and add examples. Will tackle this the next days.
>@maxgerhardt where do I find the pio framework-spl package with STM32F103 support pls? Right now either from my link above, or from STM. The PlatformIO provided one (https://api.registry.platformio.org/v3/packages/platformio/tool/framework-spl) was lasted...