add USB temlpate for F303

This commit is contained in:
eddyem
2023-01-23 12:19:19 +03:00
parent 09000fef73
commit a74e6f071b
26 changed files with 1633 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
#include "hardware.h"
static inline void gpio_setup(){
RCC->AHBENR |= RCC_AHBENR_GPIOAEN | RCC_AHBENR_GPIOBEN; // for USART and LEDs
for(int i = 0; i < 10000; ++i) nop();
GPIOB->MODER = GPIO_MODER_MODER0_O | GPIO_MODER_MODER1_O;
GPIOB->ODR = 1;
}
void hw_setup(){
gpio_setup();
}