User Activity

Hi, I'm trying to use CubeMonitor to access public variables of a base class, and CubeMonitor doesn't see them.The general structure I have is:class Base { public: int var_1; int var_2;}class Derived: public Base { public: int var_3; int var_4;}When...
Hi,I am wondering about an apparent discrepancy in documentation of the pin outs for the Nucleo-H743ZI2 board:The "user manual" for the Nucleo-144 boards, on page 7 has in a footnote that H743ZI has been replaced by the H743ZI2. (Link: https://www.st...
I am using STM32F302R8, and have setup channels 1 to 5 of TIMER1 in various output modes. In the callback function, I would like to identify which channel generated the interrupt.I am using HAL, and can figure out which timer generated the interrupt,...
Hi,I have a counter incrementing as:if (condition == TRUE) count++The counter is initialised as:int count = 0;I would expect that the counter would increment by '1' every time the condition is 'TRUE'. And this is in fact the case when I'm steppi...