08-11-2021, 11:46 AM
(04-11-2021, 01:39 PM)embitz Wrote: Sure but I would repeat myself, it is all in this threadHi,
https://www.embitz.org/forum/thread-53-p...tml#pid320
Just start reading from the begin.
My problem with EBmonitor is solved!
The reason was that somewhere in my code was, inherited from an old project,
definition of function:
// Retarget function
int _write_r(struct _reent *r, int file, char * ptr, int len)
{
r = r;
file = file;
HAL_UART_Transmit(&huart2, (uint8_t *)ptr, (uint16_t)len, 1000);
return len;
}
I commented it and now EBmonitor runs.
Maybe this information will be useful.
vdaniel