Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
99 views

I am converting default usb middleware speaker example into microphone input. For now i am transmitting dummy data, not actual microphone data. I have replaced descriptor and it seems to be correctly ...
Abrikos Kokos's user avatar
2 votes
0 answers
93 views

I've recently begun programming using STM32 chips, I'm pretty new to it and have been working trying to understand as much of the basics as I can. I've been trying to read out a very simple UART ...
BigbysHand's user avatar
0 votes
0 answers
77 views

I am using a stm32F769-Disco development kit with stm32cubeide and touchgfx. I have made an project from touchgfx and opened it from subeide. The project is loading normally and i have overwritten the ...
kyrpav's user avatar
  • 778
3 votes
0 answers
105 views

I have an issue with printing basic things with serial with zephyr project. I have the following prj.conf CONFIG_GPIO=y CONFIG_SERIAL=y CONFIG_UART_STM32=y CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y and ...
drerD's user avatar
  • 699
2 votes
0 answers
96 views

In the STM32F767ZI reference manual, the memory organization is divided into: FLASH, SRAM1, SRAM2, ITCM and DTCM, but in the linker script, the project is either stored into FLASH or RAM. I want to ...
Faisal129's user avatar
-1 votes
1 answer
154 views

I am using stm32cubeIDE and trying to store crc at the end of binary for update purposes.I am using this method because otherwise the debug will not work and i have to mark the .crc region as NOLOAD ...
Hamza Jamil's user avatar
0 votes
1 answer
66 views

I am using stm32f722ze and trying to write a program to control led using push button but it always says value error. With the help of user manual figure out the Arduino mapping for PC0 but cannot ...
Sashish Acharya's user avatar
0 votes
1 answer
87 views

I configure the RCC for 48 MHz as follows: rcc.cr.modify(|_, w| w.hseon().on()); while rcc.cr.read().hserdy().is_not_ready() {} println!("{:b}", rcc.cr.read().bits()); ...
Raul Alimbekov's user avatar
0 votes
0 answers
93 views

I'm generating a sine wave using an H-bridge with an STM32 microcontroller, utilizing center-aligned mode 2 PWM generation. In center-aligned mode 2, the DMA triggers twice per PWM cycle: once during ...
girikks's user avatar
  • 15
0 votes
1 answer
89 views

SOLUTION HERE ISSUE: Nonvolatile Configuration Register was set to an undetermined state due to a logical error in the code after sending a write nonvolatile configuration register command. SOLUTION: ...
Waynsday's user avatar
0 votes
0 answers
72 views

18:08:58 **** Incremental Build of configuration Release for project LED **** make all Building file: ../src/lib/STM32F7xx_HAL_Driver/Src/Legacy/stm32f7xx_hal_can.c Invoking: GNU Arm Cross C Compiler ...
예은박's user avatar
0 votes
1 answer
41 views

I'm using the stm32f746g-discovery board with the Keil USB HID example. I can connect to the USB HID device with a UWP app using the HidDevice class. Is it also possible to use the UsbDevice class to ...
Tom Van Gaever's user avatar
0 votes
0 answers
217 views

My project is very simple, use a microcontroller to read some analog signal for a certain period then send the data to PC. I am using STM32F756 nucleo board. I have configured one ADC in DMA mode to ...
Abdur Rakib's user avatar
2 votes
0 answers
112 views

I want to transfer data between NVIDIA Jetson Nano (Master) and STM32F756ZG (Slave) using SPI. On the master side, I am using spidev python library. On the slave side, I am coding using registers (...
Ahmad Serhal's user avatar
0 votes
0 answers
133 views

I am trying to initialise VCP through usb on n stm32f769 diso. The following function seems happy enough. But nothing happens. ioreg -p IOUSB doesn't detect anything Where do I look next? I am using ...
mr oli's user avatar
  • 1
2 votes
2 answers
794 views

I'm trying to write data to SDRAM on an STM32f746ZG board in STM32CubeIde. here is the code: /* Enable the CPU Cache */ CPU_CACHE_Enable(); ... SDRAM_Timing.LoadToActiveDelay = 2; //TMRD ...
Yael 's user avatar
  • 145
1 vote
1 answer
1k views

I am very new to stm32cubeIDE and am trying to create a mqtt connection with my stm, first with my computer to try, then it will be used with a raspberry pi. I already have a state machine running on ...
Sacrebleu Man's user avatar
2 votes
1 answer
2k views

I'm using an ARM Cortex-M7 microcontroller (specifically the STM32F767ZG) to communicate with external devices using 4 USARTs (configured as asynchronous transmitters/receivers, and using DMA to ...
Costas Vlachos's user avatar
0 votes
2 answers
479 views

I am using a STM32F767zi nucleo board as SPI full duplex slave. The dummy cycles of the slave device is varies in accordance with the master frequency change. How can I handle the dummy cycles ...
Arjun B Raj's user avatar
0 votes
0 answers
166 views

Im using STM32F723 and using the Cryptographic Library (https://wiki.stmicroelectronics.cn/stm32mcu/wiki/Security:Getting_started_with_the_Cryptographic_Library). When testing basic cmox_aead_encrypt ...
CoObri's user avatar
  • 23
0 votes
1 answer
211 views

I am currently facing an issue while programming the STM32F746G-Discovery board using STM32CubeIDE. I have created a project using the default-generated settings and made a small modification in the ...
DarreeN's user avatar
  • 21
0 votes
0 answers
625 views

I am currently working with the STM32F746G-Disco development board and a 7-inch capacitive touch LCD. The size of the generated hex file exceeds the capacity of the internal flash memory. As a ...
Gopinath's user avatar
1 vote
0 answers
3k views

I have been testing for weeks a circuit with a STM32G030F6P6TR, which has no high speed clock, as it is a TSSOP20 encapsulation. Only an LSE or clock bypass can be configured. I have tried with ...
Anto's user avatar
  • 313
1 vote
0 answers
1k views

STM32F723 USB_CDC with DMA problems Hello, I'm currently working on a project using the STM32F723 Discovery kit and USB as a Virtual Com Port (VCP) in CDC mode. I'm encountering an issue related to ...
CoObri's user avatar
  • 23
2 votes
0 answers
751 views

My setup: The signal is connected to the analog input of the STM32F767. ADC sampling rate should be at least 192kHz because input signal frequency is between 1Hz and 40kHz. Also STM32 connected to ...
anton lobanov's user avatar
0 votes
0 answers
293 views

I’m trying to implement ADC conversion from gpio analog input at the sample rate of 192 kHz. Then I want to send the array of samples over tcp to the client. My question: How to implement ADC ...
anton lobanov's user avatar
0 votes
1 answer
436 views

When HAL_Delay function is called, the processor (STM32F746NG-DISCO) is stuck in the HAL_delay function. I tried changing the HAL_Delay() function for debugging as below __weak void HAL_Delay(uint32_t ...
OpOp_1's user avatar
  • 91
1 vote
0 answers
649 views

I am working on a university project to build a small IOT camera. I am using the 32F746GDISCOVERY board with the STM32F746NG MCU along with the ov2460 image sensor from WaveShare, and the B-CAMS-OMV ...
Sol45's user avatar
  • 11
0 votes
0 answers
72 views

When setting up the GPIO on my STM32 Processor I want to check and make sure two different GPIOs are on the same port. So, I added this macro: #if (USART2_TX_GPIO_Port != USART2_RX_GPIO_Port) #error &...
MattR's user avatar
  • 95
0 votes
0 answers
456 views

I am trying to implement a system so that it retrieves sound and extracts the mfcc of it. I'd like to implement my own mfcc function because librosa library wasn't implemented in C and other ...
akoluaciklinux's user avatar
0 votes
0 answers
438 views

I have troubles with programing board with stm32f723 made by me. I am attaching pictures of the programing pins connections. As I connect the st-link of the nucle-l152 board to my board error appears ...
Ilia Hadzhiev's user avatar
0 votes
2 answers
608 views

I am trying to implement a driver for USART for my board(F746G-Disco). For now, I implement: #include "UART_DRIVER.h" #include "stm32f746xx.h" #include "stm32f7xx_hal.h" #...
akoluaciklinux's user avatar
0 votes
0 answers
286 views

I am trying to retrieve sound from MEMS microphones of my board, STM32F746G-Discovery. I am trying to use BSP Library. My board has wm8994 audio codec, and its schematic is here. I wrote a code which ...
akoluaciklinux's user avatar
1 vote
0 answers
574 views

I'd like to create a program by which I can record and listen sound by using my board, STM32F746G-Disco. I'd like to use BSP library, however, I have some questions. When I looked at the ...
akoluaciklinux's user avatar
0 votes
1 answer
259 views

I am new to the world of STM32 MCU's so please bear with me. I am following a tutorial on Udemy and trying to write a GPIO interrupt code from scratch. I have done all register configurations and ...
fw_Lnkt's user avatar
0 votes
0 answers
1k views

I am trying to use the USB Device library on STM32Cube but when I execute using the debugger or that I try to turn an LED on in CDC_Receive_FS, it never reaches that point. Here is how I set up ...
Ardakaniz's user avatar
  • 175
2 votes
1 answer
1k views

Win 10, STM32CubeIDE 1.8.0 STM32F746 Discovery board MCU: STM32F746 (Datasheet, Reference Manual, Errata) Flash: MT25QL128ABA1EW9-0SIT (Datasheet) Equipment: Low end oscilloscope, low end logic ...
Ilya's user avatar
  • 1,575
0 votes
1 answer
92 views

I have big structure with few arrays. For simplicity let's consider structure like this: typedef struct { uint32_t data_count; uint8_t data[512]; uint32_t error_count; uint8_t errors[...
Kamil's user avatar
  • 14k
1 vote
0 answers
729 views

I'm developing a complex and intricate app for STM32F746. I stumbled upon the following hard fault and I'm not sure how to find the origin of the problem : 16:05:51.832 HardFault : ExceptionFrame { r0:...
Magix's user avatar
  • 5,427
0 votes
1 answer
164 views

I have a PCB which contain an STM32F746 controller , I want to run micropython on that controller for that reason I have compiled the code of STM32F7 DISC board from that repository (https://github....
baccouri firas's user avatar
0 votes
0 answers
334 views

i want to send large array (array[1600]) with stm32f767 and lan8720a with udp. when my array biger than 1319 byte the mcu can not send(i don't receive anything with my terminal software(...
reza_dehghan98's user avatar
0 votes
0 answers
242 views

I need to connect a custom board having STM32F767zIT6 as the MCU to a window PC through a USB. The aim of the board is to filter CAN-BUS messages. The existing solution uses a CANBUS-USB adapter ...
WIF's user avatar
  • 1
1 vote
2 answers
238 views

I'm experimenting with generic-like code and I have a function like this (a lot of not relevant code removed): typedef uint8_t (*struct_converter_t)(void *, char *); void convert_struct( ...
Kamil's user avatar
  • 14k
0 votes
0 answers
226 views

In stm32f746G-Discovery, I want to draw moving graph like drawing ADC output on real time. Is it possible to make start address of LTDC buffer shifting in every single new ADC data to having graph ...
mohammadsdtmnd's user avatar
2 votes
2 answers
7k views

I have been following along with this documentation for interfacing a digital camera module with an stm32f746g-disco board: Link to documentation The part I am following specifically is pgs 60-74. ...
beyonson's user avatar
0 votes
0 answers
1k views

I encountered a problem while modifiying the STM32F746G-Discovery board. I modified it like this: instead of the 4.3" display, I soldered a 5" display (24 bit RGB--> RGB888, 800x480) to ...
Melissa123's user avatar
0 votes
3 answers
3k views

I am using NUCLEO-H755ZI-Q board, Which has two cores cortex m4 and cortex m7, To enable the lwip I have to enable CPU ICache and CPU DCache But during runtime the program exits through ...
adharsh ramanathan's user avatar
0 votes
0 answers
294 views

Hello I'm trying to cross-compile libbson to include it as lib to STM32CubeIDE to use it on STM32 ARM-core processor, but after trying to specify toolchain with command: cmake -DENABLE_MONGOC=OFF -...
s_sliwinski's user avatar
0 votes
1 answer
574 views

I just started learning about embedded systems and I'm having a bit of trouble with correctly setting up the led pin on my stm32f746ng-discovery board. I am not sure if I am not typecasting correctly ...
Storm Rhoda's user avatar
0 votes
1 answer
427 views

I'am working on a current controller to control the current in two coils simultaneously. Therefor I want to measure two analog pins simultaneously and synchronised w.r.t. the PWM timer. For PWM, I use ...
paul_schaefer's user avatar