1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/esp8266/sdk/ets.c
2019-11-14 13:58:22 +01:00

51 lines
1.0 KiB
C

/*
* Copyright (C) 2019 Gunar Schorcht
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup cpu_esp8266_sdk
* @{
*
* @file
* @brief ESP8266 ETS ROM functions
*
* @author Gunar Schorcht <gunar@schorcht.net>
* @}
*/
#include <string.h>
#include "eagle_soc.h"
#include "sdk/sdk.h"
uint8_t ets_get_cpu_frequency(void)
{
return system_get_cpu_freq();
}
void *ets_memcpy(void *dst, const void *src, size_t size)
{
return memcpy(dst, src, size);
}
void ets_wdt_disable(void)
{
SET_PERI_REG_BITS(EDGE_INT_ENABLE_REG, BIT0, 0, BIT0);
SET_PERI_REG_BITS(PERIPHS_WDT_BASEADDR + WDT_CTL_ADDRESS, WDT_CTL_EN_MASK, 0, WDT_CTL_EN_LSB);
}
void ets_wdt_enable (void)
{
SET_PERI_REG_BITS(EDGE_INT_ENABLE_REG, BIT0, 1, BIT0);
SET_PERI_REG_BITS(PERIPHS_WDT_BASEADDR + WDT_CTL_ADDRESS, WDT_CTL_EN_MASK, 1, WDT_CTL_EN_LSB);
}
void ets_install_putc1(void (*p)(char c))
{
os_install_putc1(p);
}