User Activity

I've programmed this board to print out some data via the onboard serial interface (using UART2). But all I get is garbage characters, and I can't figure out why. I checked the baud rate of both the Nucleo and the terminal, I've tried different termi...
I understand the reason behind it and it is a very useful feature, but please add the option to disable it when it's not needed. Most of the time I just do a one-off configuration using the cube configurator and then I write my own code. Also, the wa...
void delay_setup(void) { rcc_periph_clock_enable(RCC_TIM6); timer_set_prescaler(TIM6, rcc_apb1_frequency / 1000000 - 1); timer_set_period(TIM6, 0xffff); timer_one_shot_mode(TIM6); }   void delay_us(uint32_t us) { TIM_ARR(TIM6) = us; TIM_EGR(TIM...
I'm trying to use TIM1 to output a PWM signal on stm8s103f3 using the standard library (patched) with sdcc compiler.The output goes high, but there's no signal.#include "stm8s.h" #include "stm8s_it.h" /* SDCC patch: required by SDCC for interrupts...
The standard library for stm8 can only use Cosmic, Raisonance and IAR compilers, which are all either non-free or limited in some way or another. Is there a plan to include support for sdcc (or at least a way to use it)?
Kudos from