Hello everyone,Is it possible, without using third-party programs, to calculate the largest stack consumption of the non-recursive function by free STM8 tools based on SDCC?Thanks in advance.
Dear Community Members,I recently started my venture with STM8S Micro-controller. I bought an STM8S103F3P6 Chip. The very first thing i want to understand is Clock Control of the MCU. Therefore i set the MCU to HSE 16MHz. Although I wanted to see if ...
please look the sch, my mate did not find the issue, so indeed need your help!
i have waited a week, how to solve it?is there another compiler i can choose
after program the mcu by STVP, the mcu does not reset and start up, why?swim does not have reset function?
If you read the capture register like this uint16_t capch; capch=*((uint16_t*)&TIM2_CCR3H);This code will be compiled into an ldw instruction.The data is read incorrectly.The following code gives the correct result. uint16_t capch; ((ui...
Hello Respective,I am trying to flash STM8l052C6 using st link and stvd. But I am not able to flash it. Previously same controller same st link and same IDE was there I was able flash. but suddenly it stopped flashing.When trying to flash in new fre...
Hello Respective,I am trying to measure the input voltage in STM8l052C6 controller but I am unable to do the same. I tried in STM8l152C6 in STMl discovery board and it's working fine there but not in STM8l052C6.I analysed one thing by my self is addr...
Hello Respective,I am using STM8l discovery board and trying to put my controller in Sleep(HALT) for some time and waking up again when any external interrupt comes.Previously the code was working fine, but now it's not working as expected.I am using...