User Activity

Posted on October 17, 2016 at 11:20Hi,I used to work with Microchip PICs and the compiler c18 provided string constants holding the compile time & date, updated in compile (or link ?) time; examples:__DATE__ == ''Jul 08 2016''__TIME__ == ''10:56:03'...
Posted on October 17, 2016 at 11:12Hi,is it possible to specify Options bytes in source file ?I mean something similar to what I use with Microchip PIC18 (in .c files):#pragma config  WDT = ON // WDT Enabled#pragma config  WDTPS = 256 // Watchdog pr...
Posted on October 10, 2016 at 15:13Hi,I made a primitive program that calls few functions of Standard Peripheral Library / CLK and GPI modules, so source files  stm8s_clk.c + stm8s_gpio.c were added to project.After compilation I checked .map file a...
Posted on October 07, 2016 at 15:06Hi,I have just started with STM8 and would like to found the fastest toggling method.Currently I have best result with following code: while (1) {#pragma asm push A pushw X ld A, #1 // toggle with pin D0 ldw X, #0x...