#include #include #include #include #include "sr_global.h" #include "adc.h" #include "spi_flash.h" #include "freq_meas.h" #include "dsss_demod.h" static struct spi_flash_if spif; void __libc_init_array(void) { /* we don't need this. */ } void __assert_func (unused_a const char *file, unused_a int line, unused_a const char *function, unused_a const char *expr) { asm volatile ("bkpt"); while(1) {} } static void clock_setup(void) { /* 8MHz HSE clock as PLL source. * * Divide by 8 -> 1 MHz */ #define PLL_M 8 /* Multiply by 336 -> 336 MHz VCO frequency */ #define PLL_N 336 /* Divide by 2 -> 168 MHz (max freq for our chip) */ #define PLL_P 2 /* Aux clock for USB OTG, SDIO, RNG: divide VCO frequency (336 MHz) by 7 -> 48 MHz (required by USB OTG) */ #define PLL_Q 7 RCC->CR |= RCC_CR_HSEON; while(!(RCC->CR & RCC_CR_HSERDY)); RCC->APB1ENR |= RCC_APB1ENR_PWREN; /* set voltage scale to 1 for max frequency * (0b0) scale 2 for fCLK <= 144 Mhz * (0b1) scale 1 for 144 Mhz < fCLK <= 168 Mhz */ PWR->CR |= PWR_CR_VOS; /* set AHB prescaler to /1 (CFGR:bits 7:4) */ RCC->CFGR |= (0 << RCC_CFGR_HPRE_Pos); /* set ABP1 prescaler to 4 */ RCC->CFGR |= (5 << RCC_CFGR_PPRE1_Pos); /* set ABP2 prescaler to 2 */ RCC->CFGR |= (0x4 << RCC_CFGR_PPRE2_Pos); /* Configure PLL */ static_assert(PLL_P % 2 == 0); static_assert(PLL_P >= 2 && PLL_P <= 8); static_assert(PLL_N >= 50 && PLL_N <= 432); static_assert(PLL_M >= 2 && PLL_M <= 63); static_assert(PLL_Q >= 2 && PLL_Q <= 15); RCC->PLLCFGR = (PLL_M<CR |= RCC_CR_PLLON; /* Wait for main PLL */ while(!(RCC->CR & RCC_CR_PLLRDY)) ; /* Configure Flash: enable prefetch, insn cache, data cache; set latency = 5 wait states * See reference manual (RM0090), Section 3.5.1, Table 10 (p. 80) */ FLASH->ACR = FLASH_ACR_PRFTEN | FLASH_ACR_ICEN | FLASH_ACR_DCEN | (5<CFGR &= ~RCC_CFGR_SW_Msk; RCC->CFGR |= 2 << RCC_CFGR_SW_Pos; /* Wait for clock to switch over */ while ((RCC->CFGR & RCC_CFGR_SWS_Msk)>>RCC_CFGR_SWS_Pos != 2) ; } static void led_setup(void) { GPIOA->MODER |= (1<BSRR = 1<<0; else GPIOB->BSRR = 1<<16; } static void spi_flash_setup(void) { GPIOB->MODER &= ~GPIO_MODER_MODER3_Msk & ~GPIO_MODER_MODER4_Msk & ~GPIO_MODER_MODER5_Msk & ~GPIO_MODER_MODER0_Msk; GPIOB->MODER |= (2<OSPEEDR &= ~GPIO_OSPEEDR_OSPEED3_Msk & ~GPIO_OSPEEDR_OSPEED4_Msk & ~GPIO_OSPEEDR_OSPEED5_Msk & ~GPIO_OSPEEDR_OSPEED0_Msk; GPIOB->OSPEEDR |= (2<AFR[0] &= ~GPIO_AFRL_AFSEL3_Msk & ~GPIO_AFRL_AFSEL4_Msk & ~GPIO_AFRL_AFSEL5_Msk; GPIOB->AFR[0] |= (5<APB2ENR |= RCC_APB2ENR_SPI1EN; RCC->APB2RSTR |= RCC_APB2RSTR_SPI1RST; RCC->APB2RSTR &= RCC_APB2RSTR_SPI1RST; spif_init(&spif, 256, SPI1, &spi_flash_if_set_cs); } /* SPI flash test routine to be called from gdb */ #ifdef SPI_FLASH_TEST void spi_flash_test(void) { spif_clear_mem(&spif); uint32_t buf[1024]; for (size_t addr=0; addr<0x10000; addr += sizeof(buf)) { for (size_t i=0; i