17 lines
555 B
C
17 lines
555 B
C
#ifndef __FE_CONFIG_H__
|
|
#define __FE_CONFIG_H__
|
|
|
|
#include <fe_config_backend.h>
|
|
|
|
const struct fe_config_def fe_config = {
|
|
.bootloader_enable_pin = { FE_CONFIG_GPIOB, 0 },
|
|
.bootloader_enable_level = 1,
|
|
.signature_disable_pin = { FE_CONFIG_GPIOB, 1 },
|
|
.signature_disable_level = 1,
|
|
.usart = FE_CONFIG_USART1_PB7,
|
|
.baudrate = 115200,
|
|
/* The following string happens to be a valid COBS frame. */
|
|
.welcome_string = "Fenris Bootloader\r\n(c) 2020 jaseg\r\nSee https://git.jaseg.de/fenris \r\n",
|
|
};
|
|
|
|
#endif /* __FE_CONFIG_H__ */
|