User Activity

Question is about QSPI in stm32H743.It seems that indirect read mode and indirect write mode should behave the same if it sends only the instruction and the data is absent.But I don't receive interrupts in case of indirect mode read without data, whi...
Hello!Stm32CubeIde generated _sbrk(int incr) function for me. Also I need to use FreeRtos._sbrk checks heap not to overcome stack pointer.if (heap_end + incr > stack_ptr)   {      errno = ENOMEM;      return (caddr_t) -1;   }But FreeRtos allocates st...