stm32f1/application.c

326 lines
9.8 KiB
C
Raw Normal View History

2016-01-17 14:54:54 +01:00
/* 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/>.
*
*/
/** STM32F1 BusVoodoo application
2017-08-02 13:46:20 +02:00
* @file application.c
2016-08-14 21:02:38 +02:00
* @author King Kévin <kingkevin@cuvoodoo.info>
2017-04-19 16:24:07 +02:00
* @date 2016-2017
2016-08-14 21:02:38 +02:00
*/
2016-01-17 14:54:54 +01:00
/* standard libraries */
#include <stdint.h> // standard integer types
2016-08-14 21:02:38 +02:00
#include <string.h> // string utilities
2016-01-17 14:54:54 +01:00
/* STM32 (including CM3) libraries */
2016-01-18 16:23:35 +01:00
#include <libopencmsis/core_cm3.h> // Cortex M3 utilities
2016-10-23 17:42:27 +02:00
#include <libopencm3/stm32/gpio.h> // general purpose input output library
#include <libopencm3/stm32/rcc.h> // real-time control clock library
#include <libopencm3/stm32/dbgmcu.h> // debug utilities
2016-01-17 14:54:54 +01:00
/* own libraries */
#include "global.h" // board definitions
2017-04-03 13:32:45 +02:00
#include "print.h" // printing utilities
2017-12-16 13:37:35 +01:00
#include "uart.h" // USART utilities
2016-01-18 16:23:35 +01:00
#include "usb_cdcacm.h" // USB CDC ACM utilities
2018-01-14 13:49:16 +01:00
#include "terminal.h" // handle the terminal interface
2018-01-21 23:35:42 +01:00
#include "menu.h" // menu utilities
#include "busvoodoo_global.h" // BusVoodoo definitions
#include "busvoodoo_hiz.h" // BusVoodoo HiZ mode utilities
2018-01-23 15:36:05 +01:00
/** current BusVoodoo mode */
static struct busvoodoo_mode_t* busvoodoo_mode = NULL;
2017-04-03 13:32:45 +02:00
size_t putc(char c)
2016-01-17 14:54:54 +01:00
{
2017-04-03 13:32:45 +02:00
size_t length = 0; // number of characters printed
2018-01-14 13:49:16 +01:00
static char last_c = 0; // to remember on which character we last sent
if ('\n' == c) { // send carriage return (CR) + line feed (LF) newline for each LF
if ('\r' != last_c) { // CR has not already been sent
2017-12-16 13:37:35 +01:00
uart_putchar_nonblocking('\r'); // send CR over USART
2017-04-19 16:24:07 +02:00
usb_cdcacm_putchar('\r'); // send CR over USB
2018-01-14 13:49:16 +01:00
length++; // remember we printed 1 character
2016-01-17 14:54:54 +01:00
}
}
2018-01-14 13:49:16 +01:00
uart_putchar_nonblocking(c); // send byte over USART
usb_cdcacm_putchar(c); // send byte over USB
length++; // remember we printed 1 character
last_c = c; // remember last character
2017-04-03 13:32:45 +02:00
return length; // return number of characters printed
2016-01-17 14:54:54 +01:00
}
2018-01-21 23:35:42 +01:00
bool wait_space(void)
{
printf("press space to continue, or any other key to abort\n");
2017-12-16 13:37:35 +01:00
while (!uart_received && !usb_cdcacm_received) { // wait for user input
__WFI(); // go to sleep
}
char c = 0;
2017-12-16 13:37:35 +01:00
if (uart_received) {
c = uart_getchar(); // read user input from UART
} else if (usb_cdcacm_received) {
c = usb_cdcacm_getchar(); // read user input from USB
} else {
return false; // this should not happen
}
if (' '==c) { // space entered
return true;
} else { // something else entered
return false;
}
}
2018-01-21 23:35:42 +01:00
/** command to show help
* @param[in] argument no argument required
*/
static void command_help(void* argument);
2018-01-23 15:36:05 +01:00
/** command to quit current BusVoodoo mode
* @param[in] argument no argument required
*/
static void command_quit(void* argument);
2018-01-21 23:35:42 +01:00
/** command to switch LED
* @param[in] argument on, off, toggle to switch LED, or NULL to display LED status
*/
static void command_led(void* argument);
/** command to reset board
* @param[in] argument no argument required
*/
static void command_reset(void* argument);
/** command to reboot into bootloader
* @param[in] argument no argument required
*/
static void command_bootloader(void* argument);
2018-01-23 15:18:41 +01:00
/** command to show version
* @param[in] argument no argument required
*/
static void command_version(void* argument);
2018-01-21 23:35:42 +01:00
/** list of all supported commands */
static const struct menu_command_t menu_commands[] = {
{
'h',
"help",
"display help",
MENU_ARGUMENT_NONE,
NULL,
&command_help,
},
2018-01-23 15:36:05 +01:00
{
'q',
"quit",
"quit current mode",
MENU_ARGUMENT_NONE,
NULL,
&command_quit,
},
2018-01-21 23:35:42 +01:00
{
'l',
"led",
"switch LED",
MENU_ARGUMENT_STRING,
"[on|off|toggle]",
&command_led,
},
{
'r',
"reset",
"reset board",
MENU_ARGUMENT_NONE,
NULL,
&command_reset,
},
{
'b',
"bootloader",
"reboot into DFU bootloader",
MENU_ARGUMENT_NONE,
NULL,
&command_bootloader,
},
2018-01-23 15:18:41 +01:00
{
'V',
"version",
"show hardware and firmware version",
MENU_ARGUMENT_NONE,
NULL,
&command_version,
},
2018-01-21 23:35:42 +01:00
};
static void command_help(void* argument)
{
(void)argument; // we won't use the argument
printf("available commands:\n");
menu_print_commands(menu_commands, LENGTH(menu_commands)); // print global commands
menu_print_commands(busvoodoo_global_commands, LENGTH(busvoodoo_global_commands)); // print BusVoodoo global commands
2018-01-23 15:36:05 +01:00
menu_print_commands(busvoodoo_mode->commands, busvoodoo_mode->commands_nb); // print BusVoodoo mode commands
}
static void command_quit(void* argument)
{
(void)argument; // we won't use the argument
(*busvoodoo_mode->exit)(); // exit current mode
busvoodoo_mode = &busvoodoo_hiz_mode; // set HiZ mode as current mode
(*busvoodoo_mode->setup)(&terminal_prefix, NULL); // setup BusVoodoo mode
terminal_send(0); // update the terminal prompt
2018-01-21 23:35:42 +01:00
}
static void command_led(void* argument)
{
if (NULL==argument || 0==strlen(argument)) {
printf("LED is ");
if (gpio_get(GPIO(LED_PORT), GPIO(LED_PIN))) {
printf("on\n");
} else {
printf("off\n");
}
} else if (0==strcmp(argument, "on")) {
led_on(); // switch LED on
printf("LED switched on\n"); // notify user
} else if (0==strcmp(argument, "off")) {
led_off(); // switch LED off
printf("LED switched off\n"); // notify user
} else if (0==strcmp(argument, "toggle")) {
led_toggle(); // toggle LED
printf("LED toggled\n"); // notify user
} else {
printf("option malformed: %s\n", argument);
}
}
static void command_reset(void* argument)
{
(void)argument; // we won't use the argument
scb_reset_system(); // reset device
while (true); // wait for the reset to happen
}
static void command_bootloader(void* argument)
{
(void)argument; // we won't use the argument
RCC_CSR |= RCC_CSR_RMVF; // clear reset flags
scb_reset_core(); // reset core (the bootloader will interpret it as starting into DFU)
while (true); // wait for the reset to happen
}
2018-01-23 15:18:41 +01:00
static void command_version(void* argument)
{
(void)argument; // we won't use the argument
printf("BusVoodoo board: %s\n", busvoodoo_full ? "full" : "light");
printf("firmware date: %s\n", __DATE__);
}
2016-08-14 21:02:38 +02:00
/** process user command
* @param[in] str user command string (\0 ended)
*/
static void process_command(char* str)
2016-01-17 14:54:54 +01:00
{
2018-01-14 13:49:16 +01:00
// don't handle empty lines
if (!str || 0==strlen(str)) {
return;
}
2018-01-21 23:35:42 +01:00
// ensure actions are available
if (NULL==menu_commands || 0==LENGTH(menu_commands)) {
return;
}
// handle user input
2018-01-23 15:36:05 +01:00
if (!menu_handle_command(str, busvoodoo_mode->commands, busvoodoo_mode->commands_nb)) {
if (!menu_handle_command(str, busvoodoo_global_commands, LENGTH(busvoodoo_global_commands))) {
if (!menu_handle_command(str, menu_commands, LENGTH(menu_commands))) {
printf("command not recognized. enter help to list commands\n");
}
2018-01-21 23:35:42 +01:00
}
2016-08-14 21:02:38 +02:00
}
2016-01-17 14:54:54 +01:00
}
2016-08-14 21:02:38 +02:00
/** program entry point
* this is the firmware function started by the micro-controller
*/
2016-10-23 17:42:27 +02:00
void main(void);
void main(void)
{
2016-01-29 00:24:49 +01:00
rcc_clock_setup_in_hse_8mhz_out_72mhz(); // use 8 MHz high speed external clock to generate 72 MHz internal clock
2016-08-14 21:02:38 +02:00
2016-10-23 17:42:27 +02:00
#if DEBUG
2017-01-30 09:44:51 +01:00
// enable functionalities for easier debug
2016-10-23 17:42:27 +02:00
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)
#endif
2017-04-03 13:32:45 +02:00
board_setup(); // setup board
2017-12-16 13:37:35 +01:00
uart_setup(); // setup USART (for printing)
2017-04-19 16:26:40 +02:00
usb_cdcacm_setup(); // setup USB CDC ACM (for printing)
led_blink(0, 1); // switch blue LED on to show firmware is working
2016-01-29 00:24:49 +01:00
busvoodoo_setup(); // setup BusVoodoo board
printf("\nwelcome to BusVoodoo ("); // print welcome message
if (busvoodoo_full) {
printf("full");
} else {
printf("light");
}
printf(" version)\n");
2018-01-23 15:18:41 +01:00
// setup terminal
2018-01-23 15:36:05 +01:00
terminal_prefix = "BV: "; // set default prefix
2018-01-23 15:18:41 +01:00
terminal_process = &process_command; // set central function to process commands
2018-01-14 13:49:16 +01:00
terminal_setup(); // start terminal
2018-01-23 15:18:41 +01:00
2018-01-23 15:36:05 +01:00
// setup default HiZ mode
busvoodoo_mode = &busvoodoo_hiz_mode; // set HiZ mode as current mode
(*busvoodoo_mode->setup)(&terminal_prefix, NULL); // setup BusVoodoo mode
terminal_send(0); // update the terminal prompt
2018-01-23 15:18:41 +01:00
// main loop
bool action = false; // if an action has been performed don't go to sleep
button_flag = false; // reset button flag
2016-10-23 17:42:27 +02:00
char c = '\0'; // to store received character
2016-08-14 21:02:38 +02:00
bool char_flag = false; // a new character has been received
2016-01-29 00:24:49 +01:00
while (true) { // infinite loop
2017-12-16 13:37:35 +01:00
while (uart_received) { // data received over UART
action = true; // action has been performed
2017-12-16 13:37:35 +01:00
c = uart_getchar(); // store receive character
2016-08-14 21:02:38 +02:00
char_flag = true; // notify character has been received
}
2017-04-19 16:24:07 +02:00
while (usb_cdcacm_received) { // data received over USB
action = true; // action has been performed
2017-04-19 16:24:07 +02:00
c = usb_cdcacm_getchar(); // store receive character
2016-08-14 21:02:38 +02:00
char_flag = true; // notify character has been received
2016-01-18 16:23:35 +01:00
}
2016-08-14 21:02:38 +02:00
while (char_flag) { // user data received
char_flag = false; // reset flag
action = true; // action has been performed
2018-01-23 15:36:05 +01:00
if (0x04==c) { // CTRL+D is used to quit the mode
command_quit(NULL); // quit current mode
} else {
terminal_send(c); // send received character to terminal
}
2016-08-14 21:02:38 +02:00
}
while (button_flag) { // user pressed button
action = true; // action has been performed
printf("button pressed\n");
led_toggle(); // toggle LED
2016-08-14 21:02:38 +02:00
for (uint32_t i=0; i<1000000; i++) { // wait a bit to remove noise and double trigger
__asm__("nop");
}
button_flag = false; // reset flag
}
2016-08-14 21:02:38 +02:00
if (action) { // go to sleep if nothing had to be done, else recheck for activity
action = false;
} else {
__WFI(); // go to sleep
}
2016-10-23 17:42:27 +02:00
} // main loop
2016-01-17 14:54:54 +01:00
}