Forum Posts
I am trying to develop simple spi communication between 2 stm8s. I am using same files for master and spi with main.c different. Master code compiles successfully with no errors, slave has following error inspite all syntax is proper. Any help?
Compiling main.c...cxstm8 +warn +mods0 +debug -pxp +strict -pp -ps -psa -pu -l -i"C:\Program Files (x86)\COSMIC\FSE_Compilers\Hstm8" -clDebug\ -coDebug\ main.c#error cpstm8 stm8s.h:2525(12) missing ;#error cpstm8 stm8s_gpio.h:68(18) incomplete declar...
symbol _GPIO_Init not defined (Debug\main.o )
I tried the example code in this document - dm00405517-getting-started-with-the-stm8s001j3-microcontroller-stmicroelectronics.pdf, the code was://Recommendation for STM8S001J3 firmware AN5047 12/20 Rev 2 /* MAIN.C file */ #include "stm8s.h" #include ...
I2C SLAVE ISSUE
i2c issuei am using stm8s207m8t6 controller i need 30 slaves and master master side code ok but issue in slave when initilize i2cI2C_Init(300000, 0X30, I2C_DUTYCYCLE_2, I2C_ACK_CURR, I2C_ADDMODE_7BIT, 16);if use 0x30 slave address slave respond. if c...
Resolved! STM8 SWIM not working after firmware upgrade
I am using my stlink (chinese clone) from last one year for STM8. It was working fine till last week. But when I upgraded its Firmware( to version- 2J37S7) from CUBEIDE then it started misfunctioning for STM8 . Only sometimes it is detected by ST vis...
i2c slave issue
i2c issuei am using stm8s207m8t6 controller i need 30 slaves and master master side code ok but issue in slave when initilize i2cI2C_Init(300000, 0X30, I2C_DUTYCYCLE_2, I2C_ACK_CURR, I2C_ADDMODE_7BIT, 16);if use 0x30 slave address slave respond. if c...
STM8L Touch Sensing Problem
Hello everyone,I have a problem with touch sensing on STM8L151K4, It is impossibe to increase number of touch key to 10.I have to put each key in a bank for it to work. ie my project needs 8 touch keys and consumes 8 banks.I tried my best to put mult...
Resolved! Hi,Working with stm8l15 with lora.When storing more than one 32 bit variable in eeprom memory continuously, downlink is not receiving and it gets queueing. What will be the reason.
How to store more than one 32 bit variable in eeprom memory in while loop and also to receive downlink?Here,I have attached the code too.
Pins on STM8S001J3 no ouput...
I tried this code on STM8S001J3 with 8 pins:/* MAIN.C file * * Copyright (c) 2002-2005 STMicroelectronics */ //#include “stm8s.h�? /*main() { while (1); } */ #include "STM8S.h" void clock_setup(void); void GPIO_setup(void); void TIM1_setu...
STM8S103 not reading data in SPI Slave mode sent by STM8S103 SPI master?
STM8S103 not reading data in SPI Slave mode sent by STM8S103 SPI master. Even all the configurations of Slave and Master are the same. I am using IAR IDE.Please review the code of both Slave and Master and help me STM8S SLAVE CODE:#include "STM8S.h"...