2020-02-15 22:09:55 +01:00
|
|
|
/* Reflow Oven Controller
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Mario Hüttel <mario.huettel@gmx.net>
|
|
|
|
*
|
|
|
|
* This file is part of the Reflow Oven Controller Project.
|
|
|
|
*
|
|
|
|
* The reflow oven controller is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
2020-02-21 21:22:01 +01:00
|
|
|
* The Reflow Oven Control Firmware is distributed in the hope that it will be useful,
|
2020-02-15 22:09:55 +01:00
|
|
|
* 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 the reflow oven controller project.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-02-16 17:35:35 +01:00
|
|
|
/**
|
|
|
|
* @file main.c
|
|
|
|
* @brief Main file for firmware
|
|
|
|
*/
|
|
|
|
|
2020-01-26 21:07:54 +01:00
|
|
|
#include <stdlib.h>
|
2020-05-04 21:21:49 +02:00
|
|
|
#include <stdio.h>
|
2020-02-02 00:01:08 +01:00
|
|
|
#include <string.h>
|
2020-02-12 21:00:35 +01:00
|
|
|
#include <stm32/stm32f4xx.h>
|
|
|
|
#include <cmsis/core_cm4.h>
|
|
|
|
#include <setup/system_stm32f4xx.h>
|
|
|
|
#include <reflow-controller/systick.h>
|
|
|
|
#include <reflow-controller/adc-meas.h>
|
|
|
|
#include <reflow-controller/shell.h>
|
|
|
|
#include <reflow-controller/digio.h>
|
2020-04-26 21:23:25 +02:00
|
|
|
#include "fatfs/shimatta_sdio_driver/shimatta_sdio.h"
|
2020-02-12 21:00:35 +01:00
|
|
|
#include <stm-periph/stm32-gpio-macros.h>
|
2020-12-01 21:00:23 +01:00
|
|
|
#include <stm-periph/rcc-manager.h>
|
2020-02-12 21:06:52 +01:00
|
|
|
#include <stm-periph/uart.h>
|
2021-04-08 21:23:25 +02:00
|
|
|
#include <reflow-controller/periph-config/shell-uart-config.h>
|
2020-05-05 18:55:55 +02:00
|
|
|
#include <reflow-controller/oven-driver.h>
|
2020-02-25 20:05:48 +01:00
|
|
|
#include <fatfs/ff.h>
|
2020-11-29 19:04:10 +01:00
|
|
|
#include <reflow-controller/ui/gui.h>
|
2020-07-09 22:31:42 +02:00
|
|
|
#include <reflow-controller/safety/safety-controller.h>
|
2020-08-16 20:33:25 +02:00
|
|
|
#include <reflow-controller/settings/settings.h>
|
2020-12-14 20:29:51 +01:00
|
|
|
#include <reflow-controller/safety/safety-memory.h>
|
|
|
|
#include <reflow-controller/safety/fault.h>
|
|
|
|
#include <reflow-controller/updater/updater.h>
|
2021-03-19 20:19:37 +01:00
|
|
|
#include <reflow-controller/temp-profile-executer.h>
|
2021-01-02 23:04:57 +01:00
|
|
|
#include <reflow-controller/settings/spi-eeprom.h>
|
2020-01-26 21:07:54 +01:00
|
|
|
|
2020-06-14 23:22:35 +02:00
|
|
|
static void setup_nvic_priorities(void)
|
2020-01-26 21:07:54 +01:00
|
|
|
{
|
2020-02-02 20:24:44 +01:00
|
|
|
/* No sub priorities */
|
|
|
|
NVIC_SetPriorityGrouping(2);
|
2020-01-26 21:07:54 +01:00
|
|
|
|
2020-02-02 20:24:44 +01:00
|
|
|
/* Setup Priorities */
|
2020-02-05 23:09:23 +01:00
|
|
|
NVIC_SetPriority(ADC_IRQn, 2);
|
2020-09-27 23:23:44 +02:00
|
|
|
/* Measurement ADC DMA */
|
2020-02-05 23:09:23 +01:00
|
|
|
NVIC_SetPriority(DMA2_Stream0_IRQn, 1);
|
2020-09-27 23:23:44 +02:00
|
|
|
/* Shelmatta UART TX */
|
2020-02-12 21:00:35 +01:00
|
|
|
NVIC_SetPriority(DMA2_Stream7_IRQn, 3);
|
2020-11-30 21:43:38 +01:00
|
|
|
NVIC_SetPriority(DMA2_Stream4_IRQn, 2);
|
2020-02-02 00:01:08 +01:00
|
|
|
}
|
|
|
|
|
2020-04-26 21:23:25 +02:00
|
|
|
FATFS fs;
|
2020-08-22 13:33:53 +02:00
|
|
|
#define fs_ptr (&fs)
|
2020-04-26 21:23:25 +02:00
|
|
|
|
2020-06-14 23:22:35 +02:00
|
|
|
static inline void uart_gpio_config(void)
|
2020-02-24 18:50:09 +01:00
|
|
|
{
|
2020-05-11 21:51:32 +02:00
|
|
|
/*
|
|
|
|
* In case the application is build in debug mode, use the TX/RX Pins on the debug header
|
|
|
|
* else the Pins on the DIGIO header are configured in the digio module
|
|
|
|
*/
|
|
|
|
|
2020-11-01 21:22:28 +01:00
|
|
|
#if defined(DEBUGBUILD) || defined(UART_ON_DEBUG_HEADER)
|
2020-02-24 18:50:09 +01:00
|
|
|
rcc_manager_enable_clock(&RCC->AHB1ENR, BITMASK_TO_BITNO(SHELL_UART_PORT_RCC_MASK));
|
|
|
|
SHELL_UART_PORT->MODER &= MODER_DELETE(SHELL_UART_TX_PIN) & MODER_DELETE(SHELL_UART_RX_PIN);
|
|
|
|
SHELL_UART_PORT->MODER |= ALTFUNC(SHELL_UART_RX_PIN) | ALTFUNC(SHELL_UART_TX_PIN);
|
|
|
|
SETAF(SHELL_UART_PORT, SHELL_UART_RX_PIN, SHELL_UART_RX_PIN_ALTFUNC);
|
|
|
|
SETAF(SHELL_UART_PORT, SHELL_UART_TX_PIN, SHELL_UART_TX_PIN_ALTFUNC);
|
2020-06-21 01:29:50 +02:00
|
|
|
|
|
|
|
/* Setup Pullup resistor at UART RX */
|
|
|
|
SHELL_UART_PORT->PUPDR |= PULLUP(SHELL_UART_RX_PIN);
|
2020-02-24 18:50:09 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-29 20:00:16 +01:00
|
|
|
static char shell_uart_tx_buff[256];
|
2020-05-05 18:55:55 +02:00
|
|
|
static char shell_uart_rx_buff[48];
|
2020-02-24 18:50:09 +01:00
|
|
|
struct stm_uart shell_uart;
|
|
|
|
|
|
|
|
static shellmatta_retCode_t write_shell_callback(const char *data, uint32_t len)
|
|
|
|
{
|
|
|
|
uart_send_array_with_dma(&shell_uart, data, len);
|
|
|
|
return SHELLMATTA_OK;
|
|
|
|
}
|
|
|
|
|
2020-06-13 22:47:45 +02:00
|
|
|
static inline void setup_shell_uart(struct stm_uart *uart)
|
2020-02-24 18:50:09 +01:00
|
|
|
{
|
|
|
|
uart->rx = 1;
|
|
|
|
uart->tx = 1;
|
|
|
|
uart->brr_val = SHELL_UART_BRR_REG_VALUE;
|
|
|
|
uart->rcc_reg = &SHELL_UART_RCC_REG;
|
|
|
|
uart->rcc_bit_no = BITMASK_TO_BITNO(SHELL_UART_RCC_MASK);
|
|
|
|
uart->uart_dev = SHELL_UART_PERIPH;
|
|
|
|
uart->dma_rx_buff = shell_uart_rx_buff;
|
|
|
|
uart->dma_tx_buff = shell_uart_tx_buff;
|
|
|
|
uart->rx_buff_count = sizeof(shell_uart_rx_buff);
|
|
|
|
uart->tx_buff_count = sizeof(shell_uart_tx_buff);
|
|
|
|
uart->base_dma_num = 2;
|
|
|
|
uart->dma_rx_stream = SHELL_UART_RECEIVE_DMA_STREAM;
|
|
|
|
uart->dma_tx_stream = SHELL_UART_SEND_DMA_STREAM;
|
|
|
|
uart->dma_rx_trigger_channel = SHELL_UART_RX_DMA_TRIGGER;
|
|
|
|
uart->dma_tx_trigger_channel = SHELL_UART_TX_DMA_TRIGGER;
|
|
|
|
|
|
|
|
uart_init(uart);
|
|
|
|
NVIC_EnableIRQ(DMA2_Stream7_IRQn);
|
|
|
|
}
|
|
|
|
|
2020-04-26 21:23:25 +02:00
|
|
|
static bool mount_sd_card_if_avail(bool mounted)
|
|
|
|
{
|
|
|
|
FRESULT res;
|
2020-08-21 23:25:03 +02:00
|
|
|
static uint8_t IN_SECTION(.ccm.bss) inserted_counter = 0;
|
2020-04-26 21:23:25 +02:00
|
|
|
|
|
|
|
if (sdio_check_inserted() && mounted) {
|
|
|
|
memset(fs_ptr, 0, sizeof(FATFS));
|
2020-08-17 22:10:04 +02:00
|
|
|
sdio_stop_clk();
|
|
|
|
inserted_counter = 0;
|
2020-04-26 21:23:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-17 22:10:04 +02:00
|
|
|
if (!sdio_check_inserted() && inserted_counter < 255)
|
|
|
|
inserted_counter++;
|
|
|
|
|
|
|
|
if (!sdio_check_inserted() && !mounted && inserted_counter > 4) {
|
|
|
|
inserted_counter = 0;
|
2020-04-26 21:23:25 +02:00
|
|
|
res = f_mount(fs_ptr, "0:/", 1);
|
2020-08-17 22:26:29 +02:00
|
|
|
if (res == FR_OK) {
|
|
|
|
led_set(1, 1);
|
2020-04-26 21:23:25 +02:00
|
|
|
return true;
|
2020-08-17 22:26:29 +02:00
|
|
|
}
|
2020-06-14 23:22:35 +02:00
|
|
|
else
|
2020-04-26 21:23:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mounted;
|
|
|
|
}
|
|
|
|
|
2020-12-14 20:29:51 +01:00
|
|
|
static inline void handle_boot_status(void)
|
|
|
|
{
|
|
|
|
struct safety_memory_boot_status status;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
res = safety_memory_get_boot_status(&status);
|
|
|
|
if (res != 0)
|
|
|
|
panic_mode();
|
|
|
|
if (status.reboot_to_bootloader) {
|
|
|
|
status.reboot_to_bootloader = 0UL;
|
|
|
|
safety_memory_set_boot_status(&status);
|
|
|
|
|
|
|
|
led_set(0, 1);
|
|
|
|
led_set(1, 1);
|
|
|
|
|
2021-04-06 20:55:41 +02:00
|
|
|
start_updater_ram_code();
|
2020-12-14 20:29:51 +01:00
|
|
|
}
|
2021-04-08 21:35:19 +02:00
|
|
|
|
|
|
|
if (status.code_updated) {
|
|
|
|
status.code_updated = 0x0UL;
|
|
|
|
safety_memory_set_boot_status(&status);
|
|
|
|
}
|
2020-12-14 20:29:51 +01:00
|
|
|
}
|
|
|
|
|
2020-06-14 23:22:35 +02:00
|
|
|
static inline void setup_system(void)
|
2020-05-05 18:55:55 +02:00
|
|
|
{
|
2021-02-15 20:28:45 +01:00
|
|
|
float tmp;
|
|
|
|
|
2020-02-02 20:24:44 +01:00
|
|
|
setup_nvic_priorities();
|
2020-12-14 20:29:51 +01:00
|
|
|
|
|
|
|
/* Init safety controller and safety memory */
|
|
|
|
safety_controller_init();
|
|
|
|
|
2020-02-02 00:01:08 +01:00
|
|
|
systick_setup();
|
2020-05-05 18:55:55 +02:00
|
|
|
oven_driver_init();
|
2020-02-10 22:38:24 +01:00
|
|
|
digio_setup_default_all();
|
|
|
|
led_setup();
|
|
|
|
loudspeaker_setup();
|
2020-11-29 19:04:10 +01:00
|
|
|
gui_init();
|
2020-02-24 18:50:09 +01:00
|
|
|
uart_gpio_config();
|
2021-01-08 18:39:54 +01:00
|
|
|
settings_setup();
|
2020-12-14 20:29:51 +01:00
|
|
|
|
2021-02-15 20:28:45 +01:00
|
|
|
/* Load the overtemperature limit from eeprom if available. Otherwise the default value will be used */
|
|
|
|
if (settings_load_overtemp_limit(&tmp) == SETT_LOAD_SUCCESS) {
|
|
|
|
safety_controller_set_overtemp_limit(tmp);
|
|
|
|
}
|
|
|
|
|
2020-12-14 20:29:51 +01:00
|
|
|
handle_boot_status();
|
|
|
|
|
2020-06-13 22:47:45 +02:00
|
|
|
setup_shell_uart(&shell_uart);
|
2020-07-28 21:00:37 +02:00
|
|
|
adc_pt1000_setup_meas();
|
2020-05-05 18:55:55 +02:00
|
|
|
}
|
2020-02-09 19:13:37 +01:00
|
|
|
|
2020-05-11 21:51:32 +02:00
|
|
|
static void handle_shell_uart_input(shellmatta_handle_t shell_handle)
|
2020-05-05 18:55:55 +02:00
|
|
|
{
|
2020-05-11 21:51:32 +02:00
|
|
|
int uart_receive_status;
|
2020-05-05 18:55:55 +02:00
|
|
|
const char *uart_input;
|
|
|
|
size_t uart_input_len;
|
2020-05-11 21:51:32 +02:00
|
|
|
|
2020-06-13 22:47:45 +02:00
|
|
|
/* Handle UART input for shell */
|
2020-05-11 21:51:32 +02:00
|
|
|
uart_receive_status = uart_receive_data_with_dma(&shell_uart, &uart_input, &uart_input_len);
|
|
|
|
if (uart_receive_status >= 0)
|
|
|
|
shell_handle_input(shell_handle, uart_input, uart_input_len);
|
|
|
|
}
|
|
|
|
|
2020-06-14 23:22:35 +02:00
|
|
|
int main(void)
|
2020-05-11 21:51:32 +02:00
|
|
|
{
|
2020-08-16 20:33:25 +02:00
|
|
|
bool cal_active;
|
|
|
|
float offset;
|
|
|
|
float sens;
|
|
|
|
int status;
|
2020-05-11 21:51:32 +02:00
|
|
|
bool sd_card_mounted = false;
|
2020-08-16 20:33:25 +02:00
|
|
|
bool sd_old;
|
2020-05-05 18:55:55 +02:00
|
|
|
shellmatta_handle_t shell_handle;
|
2020-06-12 01:35:37 +02:00
|
|
|
int menu_wait_request;
|
2020-06-13 22:47:45 +02:00
|
|
|
uint64_t quarter_sec_timestamp = 0ULL;
|
2021-04-04 19:32:44 +02:00
|
|
|
static uint64_t IN_SECTION(.ccm.bss) main_loop_iter_count;
|
2021-01-08 18:39:54 +01:00
|
|
|
|
2020-05-05 18:55:55 +02:00
|
|
|
setup_system();
|
2020-05-04 21:21:49 +02:00
|
|
|
|
2021-01-08 18:39:54 +01:00
|
|
|
/* Try load the calibration. This will only succeed if there's an EEPROM */
|
|
|
|
status = settings_load_calibration(&sens, &offset);
|
|
|
|
if (!status) {
|
|
|
|
adc_pt1000_set_resistance_calibration(offset, sens, true);
|
|
|
|
}
|
|
|
|
|
2020-02-24 18:50:09 +01:00
|
|
|
shell_handle = shell_init(write_shell_callback);
|
2020-04-26 21:23:25 +02:00
|
|
|
shell_print_motd(shell_handle);
|
2020-02-09 19:13:37 +01:00
|
|
|
|
2020-02-21 23:37:48 +01:00
|
|
|
while (1) {
|
2020-04-26 21:23:25 +02:00
|
|
|
|
2020-06-14 23:22:35 +02:00
|
|
|
if (systick_ticks_have_passed(quarter_sec_timestamp, 250)) {
|
2020-08-17 22:26:29 +02:00
|
|
|
led_set(1, 0);
|
2020-08-16 20:33:25 +02:00
|
|
|
sd_old = sd_card_mounted;
|
2020-08-16 12:34:41 +02:00
|
|
|
sd_card_mounted = mount_sd_card_if_avail(sd_card_mounted);
|
2020-08-16 20:33:25 +02:00
|
|
|
|
|
|
|
if (sd_card_mounted && !sd_old) {
|
|
|
|
adc_pt1000_get_resistance_calibration(NULL, NULL, &cal_active);
|
|
|
|
if (!cal_active) {
|
|
|
|
status = settings_load_calibration(&sens, &offset);
|
|
|
|
if (!status) {
|
|
|
|
adc_pt1000_set_resistance_calibration(offset, sens, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-13 22:47:45 +02:00
|
|
|
quarter_sec_timestamp = systick_get_global_tick();
|
2020-04-20 21:12:40 +02:00
|
|
|
}
|
|
|
|
|
2020-11-29 19:04:10 +01:00
|
|
|
menu_wait_request = gui_handle();
|
2020-06-14 19:09:59 +02:00
|
|
|
handle_shell_uart_input(shell_handle);
|
|
|
|
|
2021-03-19 20:19:37 +01:00
|
|
|
/* Execute current profile step, if a profile is active */
|
|
|
|
temp_profile_executer_handle();
|
|
|
|
|
2020-07-27 22:15:01 +02:00
|
|
|
safety_controller_handle();
|
2020-11-30 21:43:38 +01:00
|
|
|
if (oven_pid_get_status() == OVEN_PID_RUNNING) {
|
|
|
|
oven_pid_handle();
|
|
|
|
}
|
2020-07-09 22:31:42 +02:00
|
|
|
oven_driver_apply_power_level();
|
2020-08-16 12:34:41 +02:00
|
|
|
safety_controller_report_timing(ERR_TIMING_MAIN_LOOP);
|
2021-01-02 23:04:57 +01:00
|
|
|
|
2020-06-14 01:31:44 +02:00
|
|
|
if (menu_wait_request)
|
2020-05-09 19:56:47 +02:00
|
|
|
__WFI();
|
2020-06-25 23:52:58 +02:00
|
|
|
else
|
|
|
|
__NOP();
|
2021-04-04 19:32:44 +02:00
|
|
|
main_loop_iter_count++;
|
2020-01-26 21:07:54 +01:00
|
|
|
}
|
|
|
|
|
2020-06-14 23:22:35 +02:00
|
|
|
return 0;
|
2020-01-26 21:07:54 +01:00
|
|
|
}
|
2020-02-24 18:50:09 +01:00
|
|
|
|
2020-02-25 20:05:48 +01:00
|
|
|
void sdio_wait_ms(uint32_t ms)
|
|
|
|
{
|
|
|
|
systick_wait_ms(ms);
|
|
|
|
}
|
|
|
|
|
2020-09-27 23:23:44 +02:00
|
|
|
/**
|
|
|
|
* @brief Handles the TX of UART1 (Shellmatta)
|
|
|
|
*/
|
2020-06-14 23:22:35 +02:00
|
|
|
void DMA2_Stream7_IRQHandler(void)
|
2020-02-24 18:50:09 +01:00
|
|
|
{
|
2020-11-30 00:01:26 +01:00
|
|
|
uint32_t hisr = DMA2->HISR & (0x3F << 22);
|
2020-06-14 23:22:35 +02:00
|
|
|
|
2020-02-24 18:50:09 +01:00
|
|
|
DMA2->HIFCR = hisr;
|
|
|
|
|
2020-06-14 23:22:35 +02:00
|
|
|
if (hisr & DMA_HISR_TCIF7)
|
2020-02-24 18:50:09 +01:00
|
|
|
uart_tx_dma_complete_int_callback(&shell_uart);
|
|
|
|
}
|