Questions tagged [nucleo]

STM32 Nucleo boards are a line of STM32-based embedded development boards manufactured by ST Microelectronics.

228 questions
1
vote
1 answer

why 0x40010800 + 0x0C equals 0x40010830?

I tried to access RCC_APB2ENR register as a first step to blink green led on stm32nucleo f103rb then I added 0x0C to 0x40010800(RCC base address). The expected result was 0x4001080C but the actual result was 0x40010830!!! It seems 0x0C was left…
김정우
  • 23
  • 4
1
vote
0 answers

LED Blinks "Too" Fast @ NUCLEO-H755ZI-Q

Hi! According to the STM32H755ZI's manual RM0399, §9.5.6 (pg. 377), the default clock should be 64 MHz (HSI) after reset. Since the same code worked perfectly on other devices like e.g. a NUCLEO-F303K8, I expected the (red) LED to blink with 1 Hz.…
1
vote
1 answer

Set Home position for stepper motor STM32

I have a Nucleo-IHM01A1 motor driver to drive a motor mounted with a spindle. The spindle has a limited length with an object in between. As the motor spins, the object moves along the spindle. How can I set the Home position of the motor such that…
1
vote
1 answer

STM32F767 Nucleo board printf to console

For the last couple of days I have been trying to get printf to work to print a debug message to a STM32CubeIDE console. However, without any luck. I have gone through numerous forum threads and discussions and none of them appear to have fully…
Lukas Petrikas
  • 65
  • 2
  • 11
1
vote
0 answers

stm32 RTC wakeup timer interrupt LL

Playing around with the nucleo board g070 I'm trying to setup interrupt every seconds with the RTC's wakeup timer. However I did not find a corresponding interrupt in the header file(stm32g0xx.h) generated by CubeMX. I am trying to use only LL as I…
2A-66-42
  • 554
  • 1
  • 5
  • 18
1
vote
2 answers

STM32 UART transmission problem (blocking and interrupt mode)

I have a problem with the HAL_UART_Transmit_IT function from the HAL library. I use this function in two places in the program: In function HAL_UART_RxCpltCallback, where I write back to UART the data received on interruption (just an echo). Here…
Daniel
  • 51
  • 2
  • 10
1
vote
1 answer

Error Message: pinmap not found for peripheral Location: 0x8009B0B on Nucleo-F429ZI

when I load this onto my board, I get a pinmap not found for peripheral error. I did some research on this problem (One of the pages I visited) and I think I understand the problem, however the pins I'm using all support exactly what I'm asking…
Jake
  • 90
  • 9
1
vote
1 answer

Why does casting to a float hits a hard error on STM32F429ZI (App_Fault_ISR)

Why does casting to a float hits a hard error on STM32F429ZI (App_Fault_ISR)? I'm not exactly sure what's going on here. I'm use a Nucleo Board, STM32F429ZI, on Atollic TrueSTUDIO The Code CPU_FP32 speed; CPU_INT32U val = (CPU_INT32U)(0x20u >>…
Iancovici
  • 5,574
  • 7
  • 39
  • 57
1
vote
1 answer

A way to stop stm32 nucleo l4r5zi from supply 5v out

I have A STM32 Nucleo l4r5zi. It is placed somewhere and I have only control over the PC who the Nucleo is connected to. I want the Nucleo to stop supply 5v out from his pin IN ANY WAY. I don't care to restart the nucleo or shut it down. just…
KHSX
  • 27
  • 2
  • 9
1
vote
1 answer

ERROR_DOWNLOAD_TASK_START_ISSUE on System Workbench STM32 Eclipse

Trying to start a new project for STM32F446RE board for blinking LED. There is an error which restricts me from downloading the firmware. I tried downloading the firmware from STM website and pasting in SystemWorkbench Firmware folder in AppData.
Manish Dalvi
  • 41
  • 1
  • 5
1
vote
0 answers

mbed.h library for stm32 F207zg

I tried to use mbed.h library from this link: https://github.com/ARMmbed/mbed-os/#679d24833acf0a0b5b0d528576bb37c70863bc4e for nucleo F207ZG but it fails during build because of device.h library. I am new in the field so I am not sure how to solve…
1
vote
2 answers

How to send an array of bytes between nucleo f446re with mbed through USB with UARTSerial class?

I have to send an array of data between a nucleo f446re and a pc with ubuntu using the UARTSerial class. The code that I'm using on the mbed is the following: int main() { UARTSerial pc(USBTX, USBRX, 921600); uint8_t buff[256] = { …
Noè Murr
  • 496
  • 4
  • 11
1
vote
1 answer

STM32H743ZI NUCLEO 144 & LWIP - Can't Ping The Board

Hope all is going well. I'm trying to ping STM32H743ZI NUCLEO 144 using LWIP middle-ware. Code generated by CubeMX. Configurations: Set the HCLK to 400 MHz Enabled the CPU ICache and DCache (under Cortex_M7 Configuration) Enabled MPU (Region0,…
Codie
  • 131
  • 2
  • 12
1
vote
1 answer

Is there any function for reading NFC-A (ISO14443A) tag with X-NUCLEO_NFC05A1?

I'm using X-NUCLEO-NFC05A1 with STM32 NUCLEO-F401RE board to read an NFC-A (ISO14443A) tag. I couldn't find any function for reading the tag. Can anyone help me? I tried the sample given by ST, I could find write function from there. But I couldn't…
Jaz
  • 11
  • 2
1
vote
4 answers

Question to any embedded systems engineers out there using STM32 NUCLEO

I have recently bought an STM32 NUCLEO Dev Kit and wondered if this what an actual Embedded Systems Engineer would use in the industry when developing a product? I'm using Kiel Uvision 5, STMCubeMX and STM32 ST-LINK Utility to develop certain…
Kenny Barber
  • 245
  • 2
  • 11