rumpeltux / stm8s-sdcc-examples

Example codes using sdcc to target STM8S MCUs.
43 stars 13 forks source link
embedded interrupt led sdcc serial stm8s uart

STM8S examples using SDCC

There’s not a great number of useful examples for the stm8s chips that use sdcc. This repository aims to fix this. The examples are currently targeting the STM8S103F3P6 and were tested with the according dev board that is available online for <1$.

Resources

Run

  1. You’ll need a programmer, e.g. stlink-v2 or the esp8266-based esp-stlink
  2. Get stm8flash.
$ make
$ stm8flash -c stlinkv2 -p stm8s103f3 -w led.ihx

Examples

LED & Timer

led.c sets up a timer and uses the onboard LED to blink in defined intervals.

Serial

serial.c demos using the UART to transmit serial data.

Interrupts

PWM

sound.c uses a timer and an interrupt to create 8-bit PWM output on a pin. You can directly attach a speaker and will hear a low-volume tone:

Oscilloscope View of PWM output

For better sound-quality add a 2.2μF capacitor to GND as a low-pass filter:

Oscilloscope View of PWM output with capacitor