Remove debug printfs

This commit is contained in:
Markus Koch 2021-03-02 19:46:20 +01:00
parent 154980ee10
commit 59dcbaf177
3 changed files with 2 additions and 12 deletions

View File

@ -13,8 +13,6 @@ void adc_init()
ADC_CommonInitTypeDef ADC_CommonInitStruct;
ADC_InitTypeDef ADC_InitStructure;
GPIO_InitTypeDef GPIO_InitStruct;
printf("ADC init\r\n");
// Enable Clocks
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
@ -127,12 +125,6 @@ void adc_init()
// Turn it all on
ADC_Cmd(ADC1, ENABLE);
ADC_DMACmd(ADC1, ENABLE);
printf("adc init done.\r\n");
printf("ADC CR1: %08x, CR2: %08x\r\n", ADC1->CR1, ADC1->CR2);
printf("ADC SQR1: %08x, SQR3: %08x\r\n", ADC1->SQR1, ADC1->SQR3);
printf("DMA2 S0CR: %08x\r\n", ADC_RX_DMA_STREAM->CR);
printf("ADC init complete.\r\n");
}
void DMA2_Stream0_IRQHandler()

View File

@ -124,8 +124,8 @@ int main(void)
adc_init();
printf("\r\nThis is Sabik-CPU, commit %s.\r\n", REVISION);
printf("Operating at %.3fMHz\r\n", fv );
printf("Operating at %.3fMHz.\r\n", fv );
int this_samp = 0;
int wf = 0;

View File

@ -132,8 +132,6 @@ void InitSPI2812()
DMA_InitTypeDef dma_init_struct;
GPIO_InitTypeDef GPIO_InitStructure;
NVIC_InitTypeDef nvic_init_struct;
printf("Init SPI2812: sizeof(MyBuffer)=%d\r\n", sizeof(MyBuffer));
#ifdef STM32F30X