STM8 MCUs

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

I would like some doubts clarified

I've been working with STM8S chips for about 2-3 months now, and would like my doubts clarified:What is the state of the RAM in the chip after a software/watchdog reset(Not BOR or POR, obviously). I have assumed the RAM is not disturbed by the Reset,...

I have stm8l discovery and Can any one help with i2c configuration here. I am using LP55231 led driver and I do not know whether this configuration is correct.

Please go through the code and help me out in the configuration.void i2c_init(void) {  I2C1_FREQR = 0x20;// 16mHz  I2C1_CCRL = 0x50; // 160  I2C1_OARH = 0x40; // 7-bit addressing and add-mode configuration  I2C1_CR1 = 0x01; // enable peripheral}void ...

VSrin by Associate II
  • 850 Views
  • 4 replies
  • 0 kudos

STEVAL-ISB044V1 cannot communicate with ST-Link V2

Hi all,I'm using theᅠSTEVAL-ISB044V1 evaluation board for the wireless charging test. The evaluation board is based on STWBC-EP and can be programmed with ST-LINK V2. STM8AF6166 is the core of it, so I post here. I tried to program the board, and the...

Dilemma by Associate II
  • 1498 Views
  • 4 replies
  • 0 kudos

I request sample from estore, but when i get to the shipping page, no matter how i fill out anything, the cointue button cant work and cant pass to next page,so i gave up requesting sample ,so pls st send me free sample stm8s103k3t6, thanks.

I request sample from estore, but when i get to the shipping page, no matter how i fill out anything, the cointue button cant work and cant pass to next page,so i gave up requesting sample ,so pls st send me free sample stm8s103k3t6, thanks.

STM8AF6223A how to pass ASIL B certification?

Hi All​The customer want to design STM8AF6223A for automotive application, it is have to pass ASIL B certification, but I had confirm ST website(as below hyperlink), the third party website has expired, how to get more detailed information?Thanks.​ht...

Felix1 by Associate II
  • 383 Views
  • 0 replies
  • 0 kudos

About STM8S003 be reset continoustly

Hello everyone, I have got a problem but I can't resolve it.I made a project read NMEA string from UART and show it to OLED 128x64 (I2C interface) with STM8s003F3P6. everything is OK when I tried to get GPS strings from UART and store them variable ,...

qloi by Associate
  • 343 Views
  • 0 replies
  • 0 kudos

Can I add 30 minutes delay using Timer or RTC in STM8L051F3

I am currently trying to put STM8 in sleep mode after 30 minutes if no activity is observed on I2C. I am able to use timer4 to get a delay in ms upto 1 secs but I am unable to get delay in minutes. Do I need to use RTC for this? If so can someone ...