Skip to content

Instantly share code, notes, and snippets.

View varghes's full-sized avatar

Varghese Alphonse varghes

View GitHub Profile
@varghes
varghes / gd32v_blink.c
Created April 22, 2020 20:36
GD32VF103CBT6 Longan Nano Arduino blink code
@varghes
varghes / stm8s103f3p6_Test.c
Created February 12, 2020 18:10
stm8s103f3p6 blink Test
#include <STM8S103F3P.h>
void myDelay(void);
void myDelay()
{
int i,j;
for(i=0;i<1000;i++)
{
for(j=0;j<100;)