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.
24 lines
448 B
24 lines
448 B
//
|
|
// Created by MightyPork on 2017/07/29.
|
|
//
|
|
|
|
#include "syscfg.h"
|
|
#include "persist.h"
|
|
#include "uart_driver.h"
|
|
#include "serial.h"
|
|
|
|
SystemConfigBundle * const sysconf = &persist.current.sysconf;
|
|
|
|
void ICACHE_FLASH_ATTR
|
|
sysconf_apply_settings(void)
|
|
{
|
|
serialInit();
|
|
}
|
|
|
|
void ICACHE_FLASH_ATTR
|
|
sysconf_restore_defaults(void)
|
|
{
|
|
sysconf->uart_parity = PARITY_NONE;
|
|
sysconf->uart_baudrate = BIT_RATE_115200;
|
|
sysconf->uart_stopbits = ONE_STOP_BIT;
|
|
}
|
|
|