Search found 29 matches
- Sat Dec 19, 2020 12:27 am
- Forum: IDE's
- Topic: pin addressing
- Replies: 12
- Views: 1526
Re: pin addressing
that's weird. I have a custom board which I'm sure is working. because when I upload the original .bin file to it, it works fine. let me give you more details about it. this image shows how the buzzer is connected to the STM32. Hi, as far as I know you have to use a limiting resistor between the pi...
- Tue Oct 13, 2020 10:06 pm
- Forum: General discussion
- Topic: "Generic STM32F0 series" does not run with LTO
- Replies: 9
- Views: 976
Re: "Generic STM32F0 series" does not run with LTO
Tried these #define's (except TIM because it's used by something) together with USART enabled (because my project uses serial port). This gave me only 500 bytes for some reason. UPD: Tried the same on a very early version of the sketch, which does almost nothing and lets me to disable serial port c...
- Tue Oct 13, 2020 8:36 am
- Forum: General discussion
- Topic: "Generic STM32F0 series" does not run with LTO
- Replies: 9
- Views: 976
Re: "Generic STM32F0 series" does not run with LTO
By default the HAL config loads everything and the modules are a bit heavy, especially for MCU's with low flash. The ST core allows you to change the default HAL config by creating an " hal_conf_extra.h " file on the same folder as you sketch and there you can disable everything that you d...
- Wed Oct 07, 2020 10:22 pm
- Forum: General discussion
- Topic: Problem creating new Variant STM32L151C
- Replies: 4
- Views: 671
Re: Problem creating new Variant STM32L151C
Probably the clock config. @fpiSTM are you able to give me more detail? I can't seem to solve this, I used the SystemClock_Config(void) that worked in STM32CubeIDE can you give me anything else I can check? Thanks Hi, you could check if there is a pin naming error, instead of a blinking sketch you ...
- Sat Sep 26, 2020 12:44 am
- Forum: Off topic
- Topic: How to use STM32 boards with Arduino IDE and how fast ESP32 vs STM32 are they? (incl. surprise)
- Replies: 7
- Views: 1157
Re: How to use STM32 boards with Arduino IDE and how fast ESP32 vs STM32 are they? (incl. surprise)
It's a very good video but I think that Andreas isn't really familiarized enough with the STM32 platform, for example, he didn't mention that add support for a "not listed" MCU it's super-easy on the ST core and he says that if an MCU/board isn't listed there is not support for it, also I ...
- Wed Sep 16, 2020 1:13 am
- Forum: STM32F4 based boards
- Topic: Continued issues with WeAct STM32F411
- Replies: 10
- Views: 1358
Re: Continued issues with WeAct STM32F411
I made a "black pill" with the F411CEU and duplicating the variant since it wasn't clear what HSE clock was the variant using... just overwriting the .id file and the clock config function (my board uses an 8MHz crystal) for what the stm32cubeide creates and I didn't have any problem so fa...
- Mon Sep 07, 2020 9:29 pm
- Forum: Off topic
- Topic: stm32f030f4p6
- Replies: 7
- Views: 1592
Re: stm32f030f4p6
Yes, I like the F030 series, the ST core supports the F030F4 already, but you can easily add support for other MCU, I think that support for the F030C8 will be added on the next core release and as you already saw, the MCU's are cheap on Ali, the only downside it's the flash (mostly on the F030F4-1...
- Sun Sep 06, 2020 8:50 pm
- Forum: Off topic
- Topic: stm32f030f4p6
- Replies: 7
- Views: 1592
Re: stm32f030f4p6
Yes, I like the F030 series, the ST core supports the F030F4 already, but you can easily add support for other MCU, I think that support for the F030C8 will be added on the next core release and as you already saw, the MCU's are cheap on Ali, the only downside it's the flash (mostly on the F030F4-16...
- Sat Sep 05, 2020 2:15 am
- Forum: IDE's
- Topic: Clock frequency change
- Replies: 7
- Views: 1456
Re: Clock frequency change
Hi, 60mA seems quite a bit for a normal STM32 mcu, for a L (low power/consumption) version seems too much, maybe the problem it's on something else. The datasheet for the STM32L476 mcu says that the power consumption it's 100uA/Mhz, that's 8mA at 80MHz. Also, the nucleo boards I think that includes ...
- Sun Jun 07, 2020 10:40 pm
- Forum: General discussion
- Topic: Nucleo-F030R8 and ILI9341 Changing SPI Speed
- Replies: 5
- Views: 1359
Re: Nucleo-F030R8 and ILI9341 Changing SPI Speed
Try this library:
https://github.com/Bodmer/TFT_eSPI
I'm using it with and F030C8 and the ST7735 display, on some of my tests I got about 10x better speed than the standard adafruit libraries
https://github.com/Bodmer/TFT_eSPI
I'm using it with and F030C8 and the ST7735 display, on some of my tests I got about 10x better speed than the standard adafruit libraries
