You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
246 lines
9.2 KiB
246 lines
9.2 KiB
8 years ago
|
/* 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 <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
*/
|
||
7 years ago
|
/** STM32F1 example
|
||
7 years ago
|
* @file main.c
|
||
|
* @author King Kévin <kingkevin@cuvoodoo.info>
|
||
|
* @date 2016
|
||
|
*/
|
||
8 years ago
|
|
||
|
/* standard libraries */
|
||
|
#include <stdint.h> // standard integer types
|
||
|
#include <stdlib.h> // standard utilities
|
||
7 years ago
|
#include <string.h> // string utilities
|
||
8 years ago
|
|
||
|
/* STM32 (including CM3) libraries */
|
||
7 years ago
|
#include <libopencmsis/core_cm3.h> // Cortex M3 utilities
|
||
7 years ago
|
#include <libopencm3/cm3/scb.h> // vector table definition
|
||
7 years ago
|
#include <libopencm3/cm3/nvic.h> // interrupt utilities
|
||
7 years ago
|
#include <libopencm3/stm32/gpio.h> // general purpose input output library
|
||
|
#include <libopencm3/stm32/rcc.h> // real-time control clock library
|
||
7 years ago
|
#include <libopencm3/stm32/exti.h> // external interrupt utilities
|
||
7 years ago
|
#include <libopencm3/stm32/rtc.h> // real time clock utilities
|
||
7 years ago
|
#include <libopencm3/stm32/iwdg.h> // independent watchdog utilities
|
||
|
#include <libopencm3/stm32/dbgmcu.h> // debug utilities
|
||
|
#include <libopencm3/stm32/flash.h> // flash utilities
|
||
8 years ago
|
|
||
|
/* own libraries */
|
||
7 years ago
|
#include "global.h" // board definitions
|
||
6 years ago
|
#include "print.h" // printing utilities
|
||
8 years ago
|
#include "usart.h" // USART utilities
|
||
7 years ago
|
#include "usb_cdcacm.h" // USB CDC ACM utilities
|
||
8 years ago
|
|
||
7 years ago
|
#define WATCHDOG_PERIOD 10000 /**< watchdog period in ms */
|
||
|
|
||
7 years ago
|
/** @defgroup main_flags flag set in interrupts to be processed in main task
|
||
|
* @{
|
||
|
*/
|
||
|
volatile bool rtc_internal_tick_flag = false; /**< flag set when internal RTC ticked */
|
||
|
/** @} */
|
||
|
|
||
6 years ago
|
|
||
|
size_t putc(char c)
|
||
8 years ago
|
{
|
||
6 years ago
|
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
|
||
8 years ago
|
}
|
||
6 years ago
|
} 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
|
||
8 years ago
|
}
|
||
6 years ago
|
return length; // return number of characters printed
|
||
8 years ago
|
}
|
||
|
|
||
7 years ago
|
/** user input command */
|
||
|
static char command[32] = {0};
|
||
|
/** user input command index */
|
||
|
uint8_t command_i = 0;
|
||
8 years ago
|
|
||
7 years ago
|
/** process user command
|
||
|
* @param[in] str user command string (\0 ended)
|
||
|
*/
|
||
|
static void process_command(char* str)
|
||
8 years ago
|
{
|
||
7 years ago
|
// 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");
|
||
|
} 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 {
|
||
|
goto error;
|
||
|
}
|
||
|
|
||
|
return; // command successfully processed
|
||
|
error:
|
||
|
printf("command not recognized. enter help to list commands\n");
|
||
7 years ago
|
return;
|
||
8 years ago
|
}
|
||
|
|
||
7 years ago
|
/** program entry point
|
||
|
* this is the firmware function started by the micro-controller
|
||
|
*/
|
||
7 years ago
|
void main(void);
|
||
|
void main(void)
|
||
8 years ago
|
{
|
||
7 years ago
|
rcc_clock_setup_in_hse_8mhz_out_72mhz(); // use 8 MHz high speed external clock to generate 72 MHz internal clock
|
||
7 years ago
|
|
||
6 years ago
|
|
||
7 years ago
|
#if DEBUG
|
||
6 years ago
|
// enable functionalities for easier debug
|
||
7 years ago
|
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)
|
||
6 years ago
|
#else
|
||
6 years ago
|
// 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
|
||
7 years ago
|
#endif
|
||
|
|
||
6 years ago
|
board_setup(); // setup board
|
||
7 years ago
|
usart_setup(); // setup USART (for printing)
|
||
7 years ago
|
cdcacm_setup(); // setup USB CDC ACM (for printing)
|
||
|
printf("welcome to the STM32F1 CuVoodoo example code\n"); // print welcome message
|
||
7 years ago
|
|
||
6 years ago
|
#if !(DEBUG)
|
||
|
// show watchdog information
|
||
|
printf("watchdog set to (%.2fs)\n",WATCHDOG_PERIOD/1000.0);
|
||
|
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
|
||
|
|
||
7 years ago
|
// setup RTC
|
||
|
printf("setup internal RTC: ");
|
||
|
rtc_auto_awake(RCC_LSE, 32768-1); // ensure internal RTC is on, uses the 32.678 kHz LSE, and the prescale is set to our tick speed, else update backup registers accordingly (power off the micro-controller for the change to take effect)
|
||
|
rtc_interrupt_enable(RTC_SEC); // enable RTC interrupt on "seconds"
|
||
|
nvic_enable_irq(NVIC_RTC_IRQ); // allow the RTC to interrupt
|
||
|
printf("OK\n");
|
||
|
|
||
7 years ago
|
uint32_t ticks_time = rtc_get_counter_val(); // get time from internal RTC (since first start/power up)
|
||
6 years ago
|
printf("uptime: %lu.%02lu:%02lu:%02lu\n", ticks_time/(60*60*24), (ticks_time/(60*60))%24, (ticks_time%(60*60))/60, (ticks_time%60)); // display uptime
|
||
7 years ago
|
|
||
7 years ago
|
// main loop
|
||
|
printf("command input: ready\n");
|
||
7 years ago
|
bool action = false; // if an action has been performed don't go to sleep
|
||
|
button_flag = false; // reset button flag
|
||
7 years ago
|
char c = '\0'; // to store received character
|
||
7 years ago
|
bool char_flag = false; // a new character has been received
|
||
7 years ago
|
while (true) { // infinite loop
|
||
7 years ago
|
iwdg_reset(); // kick the dog
|
||
7 years ago
|
while (usart_received) { // data received over UART
|
||
7 years ago
|
action = true; // action has been performed
|
||
7 years ago
|
led_toggle(); // toggle LED
|
||
7 years ago
|
c = usart_getchar(); // store receive character
|
||
|
char_flag = true; // notify character has been received
|
||
8 years ago
|
}
|
||
7 years ago
|
while (cdcacm_received) { // data received over USB
|
||
7 years ago
|
action = true; // action has been performed
|
||
7 years ago
|
led_toggle(); // toggle LED
|
||
7 years ago
|
c = cdcacm_getchar(); // store receive character
|
||
|
char_flag = true; // notify character has been received
|
||
7 years ago
|
}
|
||
7 years ago
|
while (char_flag) { // user data received
|
||
|
char_flag = false; // reset flag
|
||
7 years ago
|
action = true; // action has been performed
|
||
7 years ago
|
printf("%c",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<LENGTH(command)-2) { // verify if there is place to save next character
|
||
|
command_i++; // save next character
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
while (button_flag) { // user pressed button
|
||
|
action = true; // action has been performed
|
||
|
printf("button pressed\n");
|
||
7 years ago
|
led_toggle(); // toggle LED
|
||
7 years ago
|
for (uint32_t i=0; i<1000000; i++) { // wait a bit to remove noise and double trigger
|
||
|
__asm__("nop");
|
||
|
}
|
||
|
button_flag = false; // reset flag
|
||
7 years ago
|
}
|
||
7 years ago
|
while (rtc_internal_tick_flag) { // the internal RTC ticked
|
||
|
rtc_internal_tick_flag = false; // reset flag
|
||
6 years ago
|
#if !defined(BLUE_PILL) // on the blue pill the LED is close to the 32.768 kHz oscillator and heavily influences it
|
||
7 years ago
|
led_toggle(); // toggle LED (good to indicate if main function is stuck)
|
||
6 years ago
|
#endif
|
||
7 years ago
|
ticks_time = rtc_get_counter_val(); // copy time from internal RTC for processing
|
||
|
action = true; // action has been performed
|
||
7 years ago
|
if ((ticks_time%(60))==0) { // one minute passed
|
||
6 years ago
|
printf("uptime: %lu.%02lu:%02lu:%02lu\n", ticks_time/(60*60*24), (ticks_time/(60*60))%24, (ticks_time%(60*60))/60, (ticks_time%60)); // display uptime
|
||
7 years ago
|
}
|
||
|
}
|
||
|
if (action) { // go to sleep if nothing had to be done, else recheck for activity
|
||
7 years ago
|
action = false;
|
||
|
} else {
|
||
|
__WFI(); // go to sleep
|
||
|
}
|
||
7 years ago
|
} // main loop
|
||
8 years ago
|
}
|
||
7 years ago
|
|
||
7 years ago
|
/** @brief interrupt service routine called when tick passed on RTC */
|
||
|
void rtc_isr(void)
|
||
|
{
|
||
|
rtc_clear_flag(RTC_SEC); // clear flag
|
||
|
rtc_internal_tick_flag = true; // notify to show new time
|
||
|
}
|