/* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ /** CuVoodoo clapperboard firmware (for STM32F103Cx micro-controller) * @file main.c * @author King Kévin * @date 2016-2017 */ /* standard libraries */ #include // standard integer types #include // boolean type #include // string utilities /* STM32 (including CM3) libraries */ #include // Cortex M3 utilities #include // vector table definition #include // interrupt utilities #include // general purpose input output library #include // real-time control clock library #include // external interrupt utilities #include // real time clock utilities #include // independent watchdog utilities #include // debug utilities #include // flash utilities #include // timer utilities /* own libraries */ #include "global.h" // board definitions #include "print.h" // printing utilities #include "usart.h" // USART utilities #include "usb_cdcacm.h" // USB CDC ACM utilities #include "rtc_ds1307.h" // DS1307 RTC utilities #include "led_tm1637.h" // TM1637 7-segment controller utilities #include "led_max7219.h" // MAX7219 7-segment controller utilities #define WATCHDOG_PERIOD 10000 /**< watchdog period in ms */ /** @defgroup main_flags flag set in interrupts to be processed in main task * @{ */ volatile bool rtc_tick_flag = false; /**< flag set when RTC ticked */ volatile bool frame_flag = false; /**< flag set when a frame has passed */ volatile bool keep_alive_flag = false; /**< flag to restart shutdown counter on power switch activity */ /** @} */ #define SQUARE_WAVE_PORT B /**< port connected to RTC DS1307 square wave output */ #define SQUARE_WAVE_PIN 0 /**< pin connected to RTC DS1307 square wave output */ volatile uint8_t rtc_seconds = 0; /**< number of seconds passed incremented by the square wave */ #define STANDBY_TIMEOUT 30 /**< number of seconds after last shake before going down */ volatile uint16_t standby_timer = 0; /**< number of seconds since last wake-up/activity */ #define FRAME_TIMER 2 /**< timer to count frame time */ #define FRAME_RATE 25 /**< frame rate */ volatile uint8_t frame_count = 0; /**< number of frames passed */ #define BUZZER_TIMER 1 /**< timer to generate scene and take count */ #define BUZZER_1_PORT A /**< use timer 1 channel 1 (and it's negative) to driver buzzer */ #define BUZZER_1_PIN 7 /**< use timer 1 channel 1 (and it's negative) to driver buzzer */ #define BUZZER_2_PORT A /**< use timer 1 channel 1 (and it's negative) to driver buzzer */ #define BUZZER_2_PIN 8 /**< use timer 1 channel 1 (and it's negative) to driver buzzer */ #define MUX_EN_PORT B /**< port to enable multiplexer */ #define MUX_EN_PIN 9 /**< pin to enable multiplexer */ #define MUX_S0_PORT B /**< port to select multiplexer output */ #define MUX_S0_PIN 3 /**< pin to select multiplexer output */ #define MUX_S1_PORT B /**< port to select multiplexer output */ #define MUX_S1_PIN 4 /**< pin to select multiplexer output */ #define MUX_S2_PORT B /**< port to select multiplexer output */ #define MUX_S2_PIN 5 /**< pin to select multiplexer output */ #define POWER_SWITCH_PORT B /**< port to switch power of all devices (including this micro-controller) */ #define POWER_SWITCH_PIN 8 /**< pin to switch power of all devices (including this micro-controller) */ #define POWER_BUTTON_PORT B /**< port to detect power switching activity (to keep alive) */ #define POWER_BUTTON_PIN 1 /**< pin to detect power switching activity (to keep alive) */ /** user input command */ static char command[32] = {0}; /** user input command index */ uint8_t command_i = 0; size_t putc(char c) { size_t length = 0; // number of characters printed static char newline = 0; // to remember on which character we sent the newline if (0==c) { length = 0; // don't print string termination character } else if ('\r' == c || '\n' == c) { // send CR+LF newline for most carriage return and line feed combination if (0==newline || c==newline) { // send newline only if not already send (and only once on \r\n or \n\r) usart_putchar_nonblocking('\r'); // send CR over USART cdcacm_putchar('\r'); // send CR over USB usart_putchar_nonblocking('\n'); // send LF over USART cdcacm_putchar('\n'); // send LF over USB length += 2; // remember we printed 2 characters newline = c; // remember on which character we sent the newline } else { length = 0; // the \r or \n of \n\r or \r\n has already been printed } } else { usart_putchar_nonblocking(c); // send byte over USART cdcacm_putchar(c); // send byte over USB newline = 0; // clear new line length++; // remember we printed 1 character } return length; // return number of characters printed } /** process user command * @param[in] str user command string (\0 ended) */ static void process_command(char* str) { // split command const char* delimiter = " "; char* word = strtok(str,delimiter); if (!word) { goto error; } // parse command if (0==strcmp(word,"help")) { printf("available commands:\n"); printf("led [on|off|toggle]\n"); printf("time [HH:MM:SS]\n"); printf("date [YYYY-MM-DD]\n"); } else if (0==strcmp(word,"led")) { word = strtok(NULL,delimiter); if (!word) { goto error; } else if (0==strcmp(word,"on")) { led_on(); // switch LED on printf("LED switched on\n"); // notify user } else if (0==strcmp(word,"off")) { led_off(); // switch LED off printf("LED switched off\n"); // notify user } else if (0==strcmp(word,"toggle")) { led_toggle(); // toggle LED printf("LED toggled\n"); // notify user } else { goto error; } } else if (0==strcmp(word,"time")) { word = strtok(NULL,delimiter); if (!word) { printf("current time: %02u:%02u:%02u\n", rtc_ds1307_read_hours(), rtc_ds1307_read_minutes(), rtc_ds1307_read_seconds()); // get and print time from external RTC } else if (strlen(word)!=8 || word[0]<'0' || word[0]>'2' || word[1]<'0' || word[1]>'9' || word[3]<'0' || word[3]>'5' || word[4]<'0' || word[4]>'9' || word[6]<'0' || word[6]>'5' || word[7]<'0' || word[7]>'9') { // time format is incorrect goto error; } else { if (!rtc_ds1307_write_hours((word[0]-'0')*10+(word[1]-'0')*1)) { printf("setting hours failed\n"); } else if (!rtc_ds1307_write_minutes((word[3]-'0')*10+(word[4]-'0')*1)) { printf("setting minutes failed\n"); } else if (!rtc_ds1307_write_seconds((word[6]-'0')*10+(word[7]-'0')*1)) { printf("setting seconds failed\n"); } else { rtc_ds1307_oscillator_enable(); // be sure the oscillation is enabled printf("time set\n"); } } } else if (0==strcmp(word,"date")) { word = strtok(NULL,delimiter); if (!word) { printf("current date: 20%02u-%02u-%02u\n", rtc_ds1307_read_year(), rtc_ds1307_read_month(), rtc_ds1307_read_date()); } else if (strlen(word)!=10 || word[0]!='2' || word[1]!='0' || word[2]<'0' || word[2]>'9' || word[3]<'0' || word[3]>'9' || word[5]<'0' || word[5]>'1' || word[6]<'0' || word[6]>'9' || word[8]<'0' || word[8]>'3' || word[9]<'0' || word[9]>'9') { goto error; } else { if (!rtc_ds1307_write_year((word[2]-'0')*10+(word[3]-'0')*1)) { printf("setting year failed\n"); } else if (!rtc_ds1307_write_month((word[5]-'0')*10+(word[6]-'0')*1)) { printf("setting month failed\n"); } else if (!rtc_ds1307_write_date((word[8]-'0')*10+(word[9]-'0')*1)) { printf("setting day failed\n"); } else { printf("date set\n"); } } } else { goto error; } return; // command successfully processed error: printf("command not recognized. enter help to list commands\n"); return; } /** select output for TM1637 display using the multiplexer * @param[in] output clock output */ static void mux_select(uint8_t output) { if (output>7) { // multiplexer is only controlling 8 outputs return; } gpio_clear(GPIO(MUX_EN_PORT), GPIO(MUX_EN_PIN)); // enable multiplexer switch (output) { case 0: // output on channel C0 gpio_clear(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_clear(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_clear(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; case 1: // output on channel C1 gpio_set(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_clear(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_clear(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; case 2: // output on channel C2 gpio_clear(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_set(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_clear(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; case 3: // output on channel C3 gpio_set(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_set(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_clear(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; case 4: // output on channel C4 gpio_clear(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_clear(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_set(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; case 5: // output on channel C5 gpio_set(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_clear(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_set(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; case 6: // output on channel C6 gpio_clear(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_set(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_set(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; case 7: // output on channel C7 gpio_set(GPIO(MUX_S0_PORT), GPIO(MUX_S0_PIN)); gpio_set(GPIO(MUX_S1_PORT), GPIO(MUX_S1_PIN)); gpio_set(GPIO(MUX_S2_PORT), GPIO(MUX_S2_PIN)); break; default: break; } } /** program entry point * this is the firmware function started by the micro-controller */ void main(void); void main(void) { rcc_clock_setup_in_hse_8mhz_out_72mhz(); // use 8 MHz high speed external clock to generate 72 MHz internal clock // keep power on a soon as possible rcc_periph_clock_enable(RCC_GPIO(POWER_SWITCH_PORT)); // enable clock for GPIO gpio_set_mode(GPIO(POWER_SWITCH_PORT), GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO(POWER_SWITCH_PIN)); // set as output to control power gpio_set(GPIO(POWER_SWITCH_PORT), GPIO(POWER_SWITCH_PIN)); // enable power by saturating nMOS controlling power rcc_periph_clock_enable(RCC_GPIO(POWER_BUTTON_PORT)); // enable clock for GPIO domain gpio_set_mode(GPIO(POWER_BUTTON_PORT), GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO(POWER_BUTTON_PIN)); // set pin as input to detect power switching activity rcc_periph_clock_enable(RCC_AFIO); // enable alternate function clock for external interrupt exti_select_source(EXTI(POWER_BUTTON_PIN), GPIO(POWER_BUTTON_PORT)); // mask external interrupt of this pin only for this port exti_set_trigger(EXTI(POWER_BUTTON_PIN), EXTI_TRIGGER_BOTH); // trigger on any activity of the power switch exti_enable_request(EXTI(POWER_BUTTON_PIN)); // enable external interrupt nvic_enable_irq(NVIC_EXTI_IRQ(POWER_BUTTON_PIN)); // enable interrupt #if DEBUG // enable functionalities for easier debug DBGMCU_CR |= DBGMCU_CR_IWDG_STOP; // stop independent watchdog counter when code is halted DBGMCU_CR |= DBGMCU_CR_WWDG_STOP; // stop window watchdog counter when code is halted DBGMCU_CR |= DBGMCU_CR_STANDBY; // allow debug also in standby mode (keep digital part and clock powered) DBGMCU_CR |= DBGMCU_CR_STOP; // allow debug also in stop mode (keep clock powered) DBGMCU_CR |= DBGMCU_CR_SLEEP; // allow debug also in sleep mode (keep clock powered) #else // setup watchdog to reset in case we get stuck (i.e. when an error occurred) iwdg_set_period_ms(WATCHDOG_PERIOD); // set independent watchdog period iwdg_start(); // start independent watchdog #endif board_setup(); // setup board usart_setup(); // setup USART for user communication cdcacm_setup(); // setup USB ACM (serial) for user communication gpio_primary_remap(AFIO_MAPR_SWJ_CFG_JTAG_OFF_SW_ON,0); // disable JTAG (but leave SWD on) since we need most of the GPIOs printf("\nwelcome to the CuVoodoo clapperboard\n"); // print welcome message #if !(DEBUG) // show watchdog information printf("watchdog set to (%2u.%2us)\n",WATCHDOG_PERIOD/1000, (WATCHDOG_PERIOD/10)%100); if (FLASH_OBR&FLASH_OBR_OPTERR) { printf("option bytes not set in flash: software wachtdog used (not started at reset)\n"); } else if (FLASH_OBR&FLASH_OBR_WDG_SW) { printf("software wachtdog used (not started at reset)\n"); } else { printf("hardware wachtdog used (started at reset)\n"); } #endif // disable internal RTC printf("disable internal RTC: "); rcc_periph_clock_enable(RCC_PWR); // enable power domain clock rcc_periph_clock_enable(RCC_BKP); // enable backup domain clock pwr_disable_backup_domain_write_protect(); // enable write on backup domain (including RTC) RCC_BDCR &= ~RCC_BDCR_RTCEN; // disable RTC pwr_enable_backup_domain_write_protect(); // re-enable write protect printf("OK\n"); // setup external RTC printf("setup external RTC: "); rtc_ds1307_setup(); // setup external RTC module // enable square wave output and configure input interrupt rtc_ds1307_write_square_wave(1); // enable 1 Hz square wave output to sync on seconds rcc_periph_clock_enable(RCC_GPIO(SQUARE_WAVE_PORT)); // enable clock for GPIO gpio_set_mode(GPIO(SQUARE_WAVE_PORT), GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO(SQUARE_WAVE_PIN)); // set button pin to input rcc_periph_clock_enable(RCC_AFIO); // enable alternate function clock for external interrupt exti_select_source(EXTI(SQUARE_WAVE_PIN), GPIO(SQUARE_WAVE_PORT)); // mask external interrupt of this pin only for this port exti_set_trigger(EXTI(SQUARE_WAVE_PIN), EXTI_TRIGGER_FALLING); // trigger on falling edge of square wave (this is also when the RTC register are updated) exti_enable_request(EXTI(SQUARE_WAVE_PIN)); // enable external interrupt nvic_enable_irq(NVIC_EXTI_IRQ(SQUARE_WAVE_PIN)); // enable interrupt printf("OK\n"); // display date uint8_t* rtc_ds1307_time = rtc_ds1307_read_time(); // get time/date from external RTC if (rtc_ds1307_time==NULL) { printf("could not get time from DS1307\n"); } else { rtc_seconds = rtc_ds1307_time[0]; // remember seconds of minute printf("current date: 20%02u-%02u-%02u %02u:%02u:%02u\n", rtc_ds1307_time[6], rtc_ds1307_time[5], rtc_ds1307_time[4], rtc_ds1307_time[2], rtc_ds1307_time[1], rtc_ds1307_time[0]); } // verify is external RTC is running if (rtc_ds1307_oscillator_disabled()) { printf("/!\\ RTC oscillator is disabled: the battery may be empty\n"); rtc_ds1307_oscillator_enable(); // enable oscillator again } // setup analog multiplexer for TM1637 clock printf("setup multiplexer: "); rcc_periph_clock_enable(RCC_GPIO(MUX_EN_PORT)); gpio_set_mode(GPIO(MUX_EN_PORT), GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO(MUX_EN_PIN)); gpio_set(GPIO(MUX_EN_PORT), GPIO(MUX_EN_PIN)); // disable multiplexer rcc_periph_clock_enable(RCC_GPIO(MUX_S0_PORT)); gpio_set_mode(GPIO(MUX_S0_PORT), GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO(MUX_S0_PIN)); rcc_periph_clock_enable(RCC_GPIO(MUX_S1_PORT)); gpio_set_mode(GPIO(MUX_S1_PORT), GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO(MUX_S1_PIN)); rcc_periph_clock_enable(RCC_GPIO(MUX_S2_PORT)); gpio_set_mode(GPIO(MUX_S2_PORT), GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO(MUX_S2_PIN)); printf("OK\n"); // setup TM1637 and MAX7219 7-segments displays printf("setup 7-segment displays: "); led_tm1637_setup(); // setup TM1637 for (uint8_t tm1637=0; tm1637<7; tm1637++) { mux_select(tm1637); if (!led_tm1637_time(88,88)) { // test TM1637 display printf("could not test TM1637 %u\n", tm1637); } } led_max7219_setup(2); // setup MAX7219 led_max7219_intensity(15,8,0xff); // set brightness max and enable all digits led_max7219_test(true,0xff); // test all MAX7219 displays for (uint32_t i=0; i<5000000; i++) { // wait a bit to have the user check the display __asm__("nop"); } for (uint8_t tm1637=0; tm1637<7; tm1637++) { mux_select(tm1637); if (!led_tm1637_off()) { // switch off display printf("could not switch off TM1637 %u\n", tm1637); } } led_max7219_test(false,0xff); // go back in normal operation led_max7219_off(0xff); // switch displays off printf("OK\n"); // display date and time on 7-segments led_max7219_number(20000000+rtc_ds1307_time[6]*10000+rtc_ds1307_time[5]*100+rtc_ds1307_time[4], 0x14, 1); // display date on 2nd display led_max7219_number(rtc_ds1307_time[2]*1000000+rtc_ds1307_time[1]*10000+rtc_ds1307_time[0]*100, 0x54, 0); // display time on 1nd display led_max7219_on(0xff); // switch displays on // setup frame timer printf("setup frame timer: "); rcc_periph_clock_enable(RCC_TIM(FRAME_TIMER)); // enable clock for timer block timer_reset(TIM(FRAME_TIMER)); // reset timer state timer_set_mode(TIM(FRAME_TIMER), TIM_CR1_CKD_CK_INT, TIM_CR1_CMS_EDGE, TIM_CR1_DIR_UP); // set timer mode, use undivided timer clock, edge alignment (simple count), and count up timer_set_prescaler(TIM(FRAME_TIMER), (rcc_ahb_frequency/0xffff+1)-1); // set the prescaler to so count up to one second timer_set_period(TIM(FRAME_TIMER), 0xffff/FRAME_RATE); // overflow at the end of every rate timer_update_on_overflow(TIM(FRAME_TIMER)); // only use counter overflow as UEV source (use overflow as timeout) timer_clear_flag(TIM(FRAME_TIMER), TIM_SR_UIF); // clear flag timer_enable_irq(TIM(FRAME_TIMER), TIM_DIER_UIE); // enable update interrupt for timer #if FRAME_TIMER==1 nvic_enable_irq(NVIC_TIM1_UP_IRQ); // catch interrupt in service routine #else nvic_enable_irq(NVIC_TIM_IRQ(FRAME_TIMER)); // catch interrupt in service routine #endif timer_set_counter(TIM(FRAME_TIMER),0); // restart timer timer_enable_counter(TIM(FRAME_TIMER)); // enable timer to start counting frames printf("OK\n"); // setup PWM for piezo-buzzer printf("setup piezo-buzzer timer: "); rcc_periph_clock_enable(RCC_GPIO(BUZZER_1_PORT)); // enable clock for GPIO peripheral rcc_periph_clock_enable(RCC_AFIO); // enable clock for alternate function (PWM) gpio_primary_remap(AFIO_MAPR_SWJ_MASK, AFIO_MAPR_TIM1_REMAP_PARTIAL_REMAP); // remap TIM1_CH1N to PA7 instead of PB13 gpio_set_mode(GPIO(BUZZER_1_PORT), GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_ALTFN_PUSHPULL, GPIO(BUZZER_1_PIN)); // set pin as output to have a PWM to driver piezo buzzer rcc_periph_clock_enable(RCC_GPIO(BUZZER_2_PORT)); // enable clock for GPIO peripheral gpio_set_mode(GPIO(BUZZER_2_PORT), GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_ALTFN_PUSHPULL, GPIO(BUZZER_2_PIN)); // set pin as output to have a PWM to driver piezo buzzer rcc_periph_clock_enable(RCC_TIM(BUZZER_TIMER)); // enable clock for timer peripheral timer_reset(TIM(BUZZER_TIMER)); // reset timer state timer_set_mode(TIM(BUZZER_TIMER), TIM_CR1_CKD_CK_INT, TIM_CR1_CMS_EDGE, TIM_CR1_DIR_UP); // set timer mode, use undivided timer clock, edge alignment (simple count), and count up timer_set_prescaler(TIM(BUZZER_TIMER), 0); // no prescaler to keep most precise timer (72MHz/2^16=1099<2kHz) timer_set_period(TIM(BUZZER_TIMER), rcc_ahb_frequency/2000-1); // set the PWM frequency to 2kHz for piezo-buzzer timer_set_oc_value(TIM(BUZZER_TIMER), TIM_OC1, rcc_ahb_frequency/2000/2-1); // duty cycle to 50% (also applies to TIM_OC1N) // no preload is used, although the reference manual says to enable it timer_set_oc_mode(TIM(BUZZER_TIMER), TIM_OC1, TIM_OCM_PWM1); // set timer to generate PWM (also applies to TIM_OC1N) timer_enable_oc_output(TIM(BUZZER_TIMER), TIM_OC1); // enable output to generate PWM timer_enable_oc_output(TIM(BUZZER_TIMER), TIM_OC1N); // enable output to generate PWM (complementary to be louder) timer_enable_break_main_output(TIM(BUZZER_TIMER)); // enable master output timer_generate_event(TIM(BUZZER_TIMER), TIM_EGR_UG); // generate update event to reload registers and reset counter printf("OK\n"); // main loop printf("command input: ready\n"); bool action = false; // if an action has been performed don't go to sleep button_flag = false; // reset button flag char c = '\0'; // to store received character bool char_flag = false; // a new character has been received while (true) { // infinite loop iwdg_reset(); // kick the dog while (usart_received) { // data received over UART action = true; // action has been performed led_toggle(); // toggle LED c = usart_getchar(); // store receive character char_flag = true; // notify character has been received } while (cdcacm_received) { // data received over USB action = true; // action has been performed led_toggle(); // toggle LED c = cdcacm_getchar(); // store receive character char_flag = true; // notify character has been received } while (char_flag) { // user data received char_flag = false; // reset flag action = true; // action has been performed putc(c); // echo receive character if (c=='\r' || c=='\n') { // end of command received if (command_i>0) { // there is a command to process command[command_i] = 0; // end string command_i = 0; // prepare for next command process_command(command); // process user command } } else { // user command input command[command_i] = c; // save command input if (command_i=STANDBY_TIMEOUT) { // standby timeout complete // go into standby mode printf("shutting down\n"); led_max7219_off(0xff); // switch off MAX7219 displays for (uint8_t tm1637=0; tm1637<7; tm1637++) { // switch off TM1637 displays mux_select(tm1637); // selecting TM1637 display led_tm1637_off(); // switch off TM1637 display } gpio_clear(GPIO(POWER_SWITCH_PORT), GPIO(POWER_SWITCH_PIN)); // switch power of by disconnecting from battery SCB_SCR |= SCB_SCR_SLEEPDEEP; // enable deep sleep pwr_set_standby_mode(); // go to deep sleep while (true); // we should be shut down at this point } if (rtc_seconds>=60) { // one minute passed rtc_ds1307_time = rtc_ds1307_read_time(); // get time/date from external RTC if (rtc_ds1307_time==NULL) { printf("could not get time from DS1307: resetting\n"); rtc_ds1307_setup(); // resetting periph } else { rtc_seconds = rtc_ds1307_time[0]; // get actual number of seconds if (0==rtc_ds1307_time[1] && 0==rtc_ds1307_time[2]) { // new day arrived led_max7219_number(20000000+rtc_ds1307_time[6]*10000+rtc_ds1307_time[5]*100+rtc_ds1307_time[4], 0x14, 1); // display date on 2nd display } } } for (uint8_t tm1637=0; tm1637<7; tm1637++) { mux_select(tm1637); if (!led_tm1637_time(rtc_ds1307_time[1],rtc_seconds+tm1637)) { // test TM1637 display printf("could not send time to TM1637 %u\n", tm1637); } } } while (keep_alive_flag) { // power switch is detecting movement to keep clapperboard running keep_alive_flag = false; // clear flag standby_timer = 0; // restart standby timer } if (action) { // go to sleep if nothing had to be done, else recheck for activity action = false; } else { __WFI(); // go to sleep and wait for interrupt } } // main loop } /** RTC square wave input ISR to synchronize to seconds and count them */ void EXTI_ISR(SQUARE_WAVE_PIN)(void) { exti_reset_request(EXTI(SQUARE_WAVE_PIN)); // reset interrupt frame_count = 0; // re-sync frame counter to second rtc_seconds++; // increment number of seconds passed if (standby_timer