Skip to content

Instantly share code, notes, and snippets.

View Shubuo's full-sized avatar
🚀
Ready to flight !

Burak Yörük Shubuo

🚀
Ready to flight !
View GitHub Profile
@iwalpola
iwalpola / stm32_gpio_reg.md
Last active May 2, 2024 08:40
STM32 GPIO registers cheatsheet
@AnttiNykanen
AnttiNykanen / main.c
Created September 29, 2014 09:45
STM32F103C8 USART example
#include "stm32f10x.h"
#include "stm32f10x_conf.h"
int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
uint16_t rxbuf[64];
int rxbuf_pos = 0;