aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2019-05-12 13:41:00 +0900
committerjaseg <git@jaseg.net>2019-05-12 13:41:00 +0900
commitd83285ef7a04c3b385bd3857ec98847b532b7f35 (patch)
tree04f6a23140b737896c1d79dc8166a9f0976d044e
parentad74e9dd117dc30fc94e820798ecb4cd9af18466 (diff)
download8seg-d83285ef7a04c3b385bd3857ec98847b532b7f35.tar.gz
8seg-d83285ef7a04c3b385bd3857ec98847b532b7f35.tar.bz2
8seg-d83285ef7a04c3b385bd3857ec98847b532b7f35.zip
Fixup receiver timeout setting, add some doc
-rw-r--r--center_fw/8seg_protocol.c2
-rw-r--r--center_fw/adc.c19
-rw-r--r--center_fw/adc.h2
3 files changed, 16 insertions, 7 deletions
diff --git a/center_fw/8seg_protocol.c b/center_fw/8seg_protocol.c
index 0d0a2eb..ef90800 100644
--- a/center_fw/8seg_protocol.c
+++ b/center_fw/8seg_protocol.c
@@ -23,7 +23,7 @@ volatile union {
} tx_buf;
void protocol_init() {
- adc_configure_monitor_mode(&cmd_if.cmd_if, 20 /*us*/);
+ adc_configure_monitor_mode(&cmd_if.cmd_if);
tx_init((uint8_t *)&tx_buf);
}
diff --git a/center_fw/adc.c b/center_fw/adc.c
index 0fb8251..d702274 100644
--- a/center_fw/adc.c
+++ b/center_fw/adc.c
@@ -77,8 +77,11 @@ void adc_configure_scope_mode(uint8_t channel_mask, int sampling_interval_ns) {
adc_timer_init(12/*250ns/tick*/, cycles);
}
-/* Regular operation receiver mode */
-void adc_configure_monitor_mode(const struct command_if_def *cmd_if, int ivl_us) {
+/* FIXME figure out the proper place to configure this. */
+#define ADC_TIMER_INTERVAL_US 20
+
+/* Regular operation receiver mode. */
+void adc_configure_monitor_mode(const struct command_if_def *cmd_if) {
/* First, disable trigger timer, DMA and ADC in case we're reconfiguring on the fly. */
TIM1->CR1 &= ~TIM_CR1_CEN;
ADC1->CR &= ~ADC_CR_ADSTART;
@@ -93,7 +96,8 @@ void adc_configure_monitor_mode(const struct command_if_def *cmd_if, int ivl_us)
st.mean_aggregate_ctr = 0;
st.det_st.hysteresis_mv = 6000;
- st.det_st.base_interval_cycles = 10;
+ /* base_cycles * the ADC timer interval (20us) must match the driver's AC period. */
+ st.det_st.base_interval_cycles = 40; /* 40 * 20us = 800us/1.25kHz */
st.det_st.sync = 0;
st.det_st.last_bit = 0;
@@ -121,7 +125,12 @@ void adc_configure_monitor_mode(const struct command_if_def *cmd_if, int ivl_us)
ADC1->CR |= ADC_CR_ADEN;
ADC1->CR |= ADC_CR_ADSTART;
- adc_timer_init(SystemCoreClock/1000000/*1.0us/tick*/, ivl_us);
+ /* Initialize the timer. Set the divider to get a nice round microsecond tick. The interval must be long enough to
+ * comfortably fit all conversions inside. There should be some margin since the ADC runs off its own internal RC
+ * oscillator and will drift w.r.t. the system clock. 20us is a nice value when four channels are selected (A, B,
+ * T and V).
+ */
+ adc_timer_init(SystemCoreClock/1000000/*1.0us/tick*/, 20/* us */);
}
static void adc_dma_init(int burstlen, bool enable_interrupt) {
@@ -189,7 +198,7 @@ void receive_bit(struct bit_detector_st *st, int bit) {
receive_symbol(&st->rx_st, symbol);
GPIOA->BRR = 1<<9; /* debug */
- /* Debug scope logic */
+ /* Exceedingly handy piece of debug code: The Debug Scope 2000 (TM) */
/*
static int debug_buf_pos = 0;
if (st->sync) {
diff --git a/center_fw/adc.h b/center_fw/adc.h
index 105fde5..906cb7f 100644
--- a/center_fw/adc.h
+++ b/center_fw/adc.h
@@ -85,7 +85,7 @@ extern volatile struct adc_measurements adc_data;
void adc_init(void);
void adc_configure_scope_mode(uint8_t channel_mask, int sampling_interval_ns);
-void adc_configure_monitor_mode(const struct command_if_def *cmd_if, int ivl_us);
+void adc_configure_monitor_mode(const struct command_if_def *cmd_if);
void bit_detector(struct bit_detector_st *st, int a);
void receive_bit(struct bit_detector_st *st, int bit);