diff options
author | jaseg <git@jaseg.net> | 2019-01-13 15:34:01 +0900 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2019-01-13 15:34:01 +0900 |
commit | 0f206f09bfdc2f86a9d1715d42bbf2a69973e766 (patch) | |
tree | 39b14b5fd4c367b26c95e947d296ddb47e726f0c /fw/adc.c | |
parent | 7b5ca8102b10009b305a5b5c3e1978cb351858c5 (diff) | |
download | 8seg-0f206f09bfdc2f86a9d1715d42bbf2a69973e766.tar.gz 8seg-0f206f09bfdc2f86a9d1715d42bbf2a69973e766.tar.bz2 8seg-0f206f09bfdc2f86a9d1715d42bbf2a69973e766.zip |
TIM3 working stably now
Diffstat (limited to 'fw/adc.c')
-rw-r--r-- | fw/adc.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -180,9 +180,12 @@ void receive_bit(struct bit_detector_st *st, int bit) { st->sync = 0; /* Fall through so we also pass the error to receive_symbol */ + GPIOA->BSRR = 1<<9; receive_symbol(&st->rx_st, symbol); + GPIOA->BRR = 1<<9; /* Debug scope logic */ + /* static int debug_buf_pos = 0; if (st->sync) { if (debug_buf_pos < NCH) { @@ -199,6 +202,7 @@ void receive_bit(struct bit_detector_st *st, int bit) { } } } + */ } void bit_detector(struct bit_detector_st *st, int a) { @@ -216,7 +220,6 @@ void bit_detector(struct bit_detector_st *st, int a) { st->last_bit = new_bit; st->len_ctr = 0; st->committed_len_ctr = st->base_interval_cycles>>1; - unblank(new_bit); } else if (st->len_ctr >= st->committed_len_ctr) { st->committed_len_ctr += st->base_interval_cycles; @@ -225,8 +228,9 @@ void bit_detector(struct bit_detector_st *st, int a) { } void DMA1_Channel1_IRQHandler(void) { + GPIOA->BSRR = 1<<5; /* ISR timing measurement for debugging */ - int start = SysTick->VAL; + //int start = SysTick->VAL; /* Clear the interrupt flag */ DMA1->IFCR |= DMA_IFCR_CGIF1; @@ -255,10 +259,13 @@ void DMA1_Channel1_IRQHandler(void) { bit_detector((struct bit_detector_st *)&st.det_st, a); /* ISR timing measurement for debugging */ + /* int end = SysTick->VAL; int tdiff = start - end; if (tdiff < 0) tdiff += SysTick->LOAD; st.dma_isr_duration = tdiff; + */ + GPIOA->BRR = 1<<5; } |