Discuss STM8 microcontrollers, including SWIM, USART configurations, RTC usage, ADC issues, and debugging.
Hello,I am using NUCLEO-8L152R8 board for our project purpose.I am new to this board. I have downloaded tools like STM8Cubemx, ST visual develop.I haven't found any video or document which will guide me on how to develop code in ST visual develop and...
Hi,I am looking at STM8 MCUs and am trying to figure out, if I need the RWW functionality. I want to save data to EEPROM after a specified time has elapsed and read at random times from the data EEPROM. I also want to have UART comms running.To ensur...
I'm trying to identify an 8-pin part that appears to have an "ST" logo on it. I'm pretty sure it is an 8-bit MCU, (part of a LED tube driver dimmer control) The part numbers looks like ST G9949, but I can't find a match on ST.com. Does ST custom labe...
Hey, The STVD latest version available from the Website is 4.3.12. But its user manual On the Website (Doc: UM0036) is for STVD version 4.0.1 (Which is released in 2010).I can't find any User Manual DOC for STVD latest Version 4.3.12.anybody any Idea...
INTERRUPT_HANDLER(EXTI_PORTA_IRQHandler, 3){ /* In order to detect unexpected events during development, it is recommended to set a breakpoint on the following instruction. */ if(!GPIO_ReadInputPin(RUIDO_PASS_Port, RUIDO_PASS_Pin)) { Tmr10msLeRuid...
I have a STM8S003F3 and a Arduino Micro SD Card Module. I want to communicate with Micro SD Card. But Project SPI_FastCommunicationMicroSD in STM8S_StdPeriph_Lib is not working. It goes into "Go to infinite loop when there is mismatch in data program...
My code as a below;void EEPROM_WriteByte(unsigned int address, unsigned char value){ FLASH->DUKR = 0xAE; FLASH->DUKR = 0x56; (*(uint8_t *)(0x9FC0 + address)) = value; FLASH->IAPSR &= FLASH_MemType_Data;}unsigned char EEPROM_ReadByte(unsig...