STM8 IC used in STM8A Discovery
Hi STM Team,Which STM8 IC is used in STM8A Discovery? Is it STM8AF5288TAX or STM8AF5288TAY ?Could you also let us know the difference between both the versions?Thanks.
Discuss STM8 microcontrollers, including SWIM, USART configurations, RTC usage, ADC issues, and debugging.
Hi STM Team,Which STM8 IC is used in STM8A Discovery? Is it STM8AF5288TAX or STM8AF5288TAY ?Could you also let us know the difference between both the versions?Thanks.
I wasn't sure where to post this request for the STNRG digital control IC example files so I'm reposting in STM8 after getting no responses in Power Management or from technical support in a weekThere is a link to download 5 sample files for the STLU...
As the result, the right side has very short run (it reaches 1023 in one sixth of travel). The same for Y axis, the same with another joystick. Both joysticks work properly with arduino - middle 520 (or so). Is there any (obvious) reason; how can I r...
I am trying to get I2C communication working between two STM8S003F3P6.From I2c master I am trying to initiate I2C start message using CR2 registers with below code#define I2C_CR2_START ((uint8_t)0x01) /*!< Start Generation */ ..... I2C->CR2 |...
I am trying to run example code for i2c master and slave, provided in Stm standard peripheral library from https://www.st.com/en/embedded-software/stsw-stm8069.htmlBut the master keeps crahing at I2C_GenerateSTART API call.I2C_ITConfig enableInterru...
I am trying to get I2C working for STM8S003F3P6 with ESP8266. I tried I2C sample code available with standard periferal library https://www.st.com/en/embedded-software/stsw-stm8069.html . But for some reason I2c is not working. Now I just noticed the...
I am trying to run simple program to output HIGH on IO pin of microcontroller STM8S003F3P6. I am using PB5 pin to output High. I am using 3.3v power supply and expect GPIO to output 3.3v when I set it HIGH but surprisingly I am getting 5V instead, b...
Can the TIM1 part of this tutorial be simplified as follows?https://embedded-lab.com/blog/continuing-stm8-microcontroller-expedition/6/Remove everything related to the the interrupt, because TIM1_GetCapture2() can be called at any time from main(). I...