2013-12-21 07:23 AM
The STM8/128-EVAL demo firmware provided by ST is broken:
It does not correctly enable the output pins for the TX lines. Thus you will never see anything on the USARTs in the adc demos that are supposed to use them. Philipp P.S.: I've put a simple, working USART demo for the STM8/128-EVAL at http://www.colecovision.eu/stuff/stm8/ it repeatedly outputs ''Hello world!'' at 1200 baud, 1 stop bit.2013-12-21 02:38 PM
I replaced the demo by one for 9600 baud.
2014-10-26 09:22 AM
Based on the demo I wrote a short tutorial on serial I/O using sdcc on the STM8/128-EVAL:
http://www.colecovision.eu/stm8/128-EVAL%20Serial.shtml Philipp2014-10-27 12:47 AM
I noticed a little problem.
These html lines:#include<stdint.h>
#include<stdio.h>
are shown as empty '#include' in the browser.2014-10-27 01:59 AM
Thanks. It is fixed now (in all three tutorials that were affected).
Philipp