User Activity

I have two files fifo.h and fifo.c:#ifndef __FIFO_H__ #define __FIFO_H__   //#include <stdint.h>   typedef uint8_t FIFO_Data_t; typedef uint8_t FIFO_Index_t;   typedef struct { FIFO_Index_t SizeMask; volatile FIFO_Index_t Head; volatil...
Is there any working PS/2 keyboard/mouse library available for STM8 microcontroller?Best Regards,tinkerBOY
I'm new to STM8 microcontrollers and have purchased a few STM8S003F3P6 boards to learn how to interface a PS/2 keyboard and mouse. I have installed the ST Visual Develop IDE with STM8 Standard Peripheral Library and started tinkering with blinking a ...
Kudos from