I am using nucleo-f446re board. It was running perfect before but suddenly i am getting USB device not recognized when I plug in my board to my system. And in device manager it is showing device descriptor request failed. Please suggest me the soluti...
Hi,I am porting an application from the STMF429ZI to the STMH753ZI and have noticed that the STMH753 is slower when reading the GPIO inputs compared to the STMF429. In one function, multiple GPIOs are read to gather 16 input states. Measuring this fu...
Hello Community,I am using STM32H745 controller in one of my project.I am trying to send data from M4 core to M7 core using SRAM. To test the same I am increment a variable and writing to 0x10040004 location from M4 and reading the same location (als...
Hi, I have this very simple code that sets generic flags to the desired value:struct GenFlgStr{ uint8_t F1 : 1; uint8_t F2 : 1; uint8_t f3 : 1;};struct GenFlgStr GenFlg;main{ GenFlg.F1=1; GenFlg.F2=0;}----------------------------------------...
Hi,I am planning to implement DALI on STM32G MCU, I have looked at the documentation but all the example projects are with STM32L1 or STM32F1 and the library provided by STM is based on IAR workbench. My questions are Can I implement DALI Slave on ST...
I am troubling to write and read data from external SDRAM & NOR Flash in our custom made hardware which has STM32F429 controller.Thread is disconnecting while debugging & writing & reading operation not succeed.Can you please explain the all steps in...
Hi everyone,I expected to get a faster multiplication processing using the arm_mult_f32 function than a normal multiplication like val1*val2. However, when I tested it using the SysTick->VAL I get a bigger processing time for the arm_mult_f32 functio...
Hello,I'm new to all this, first-year uni student and still learning java. I'm working on someone else's code for the uni motorsport club in c++ and the original coder has left.Currently, we detect the wheel speed using a hall effect sensor and captu...