58 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
82
views
How to detect the end of an ESP-01 (ESP8266 AT command) UART response when receiving with interrupts?
I’m working with an ESP-01 (ESP8266, AT firmware) connected to an STM32 "Bluepill".
I receive data from the ESP using UART interrupt (HAL_UART_Receive_IT) and I want to detect when a full response ...
0
votes
0
answers
44
views
SIM800C doesn't go to sleep
My goal is to make my SIM800C sleep for a few seconds using my Blue Pill and STM32CubeIDE. I did the following steps:
configured PA6 and PB6 as (Output) Output Pull Pull and No pull up/down.
used ...
0
votes
0
answers
32
views
stm32f1 bluepill strange behavior after remap jtag pins
I'm working on some libraries and remap lib is one of them. earlier this library was tested and working fine. I released A15, B3 and B4 pins . but now , MCU just resets after remap or do some strange ...
2
votes
1
answer
152
views
Why is half of my code working and half not? STM32
Hi I am trying to read adc data from stm32f103c8t6 bluepill and I am giving 3.3v to the A1 from arduino uno as you can see from the picture below. When the adc data is more than 2000 the LED that's ...
-1
votes
2
answers
549
views
STM32f103c8 blue pill GPIO driver configuration
I want to create my own driver on stm32f1 board. I want to control MCU build_in led but I can't solve. I am trying to make PortC pin 13 pin as output (push-pull) mode, after that I want to set bit. ...
0
votes
1
answer
1k
views
STM32 proteus simulation doesn't work properly
guys I'm making a simulation for stm32f103c6 the code written on Arduino IDE. I'm testing a simple LED blink on proteus and it's not even working.
Arduino Code
And this is what happens when I run the ...
1
vote
1
answer
540
views
What's the right CAN bus settings for STM32F4-Disc for 250 kbit/s by using nanoFramework?
I'm trying to connect a Blue Pill board (set up by STM32CubeMX) with STM32F4-Discovery (set up by ChibiOS and nanoFramework).
The Blue Pill has these parameters:
APB1 peripheral clock: 24 MHz
...
0
votes
0
answers
330
views
Time clock using built in RTC of STM32 bluebill
I am new in STM32 development and trying to built RTC clock that display's time on oled display.
But on screen some random unidentified symbols are displaying by the below code.
while(1){
/* ...
1
vote
0
answers
3k
views
Could not verify St device error occurs in STM32CubeIDE
I am trying to run Blinky on stm32 bluepill but I am getting error message....."Could not verify ST device! Please verify that the latest version of GDB-server is used for the connection"
I ...
0
votes
0
answers
890
views
Error in final launch sequence: Failed to execute MI command:
I am using STM32F103C8T6 and ST-Link V2 Programmer. I am in Windows 11.
Error in final launch sequence:
Failed to execute MI command:
target remote localhost:61234
Error message from debugger back end:...
1
vote
1
answer
978
views
missing a character after a fixed interval while receiving through UART in stm32(bluepill)
I am trying to send a string "hello" continiously through UART1 from Atmega 328P to the BLUEPILL board. I am doing the reception by by interrupt.
The problem is after few times it starts to ...
0
votes
1
answer
4k
views
STM32cubeide with stm32f103c8t6 could not verify ST device
I am new to embedded and stm32cubeide, self teaching so I can use it in a group project related to university studies.
After purchasing a "blue pill" from aliexpress, I realized I might of ...
1
vote
1
answer
9k
views
stlink v2 clone and "blue pill" board - blue/red LED meaning and problems getting started
Trying (for first time, and without success) to push firmware to a STM32 "blue pill" board (STM32F103C6T6) using a STLINK V2 clone (small red USB device with 10 pins at one end.)
The "...
0
votes
0
answers
178
views
Weird performance for SPI comunication in bluepill and stm32cubemx
I am facing a weird problem with bluepill (stm32f103c8). I developed a code to control lead addressable stripe that uses SPI communication (APA102), and it worked nicely, then I tried to PWM on timer ...
0
votes
2
answers
4k
views
STM32 External LED blink
I am trying to Blink external LED using STM32CubeIDE and Proteus
while (1)
{
HAL_GPIO_TogglePin(LED_GPIO_Port, LED_Pin);
HAL_Delay(100);
}
[)2
The LED doesn't blink