esp32-hal.h 3.0 KB
Newer Older
M
me-no-dev 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 Arduino.h - Main include file for the Arduino SDK
 Copyright (c) 2005-2013 Arduino Team.  All right reserved.

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 This library 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
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef HAL_ESP32_HAL_H_
#define HAL_ESP32_HAL_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
31
#include <stdarg.h>
M
me-no-dev 已提交
32 33
#include <inttypes.h>
#include <string.h>
M
Me No Dev 已提交
34
#include <math.h>
35
#include "sdkconfig.h"
36
#include "esp_system.h"
M
me-no-dev 已提交
37

38 39 40 41
#ifndef F_CPU
#define F_CPU (CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ * 1000000U)
#endif

42
//forward declaration from freertos/portmacro.h
M
me-no-dev 已提交
43 44
void vPortYield(void);
void yield(void);
45 46
#define optimistic_yield(u)

M
me-no-dev 已提交
47 48 49 50 51 52 53
#define ESP_REG(addr) *((volatile uint32_t *)(addr))
#define NOP() asm volatile ("nop")

#include "esp32-hal-log.h"
#include "esp32-hal-matrix.h"
#include "esp32-hal-uart.h"
#include "esp32-hal-gpio.h"
54 55 56
#include "esp32-hal-touch.h"
#include "esp32-hal-dac.h"
#include "esp32-hal-adc.h"
M
me-no-dev 已提交
57 58
#include "esp32-hal-spi.h"
#include "esp32-hal-i2c.h"
M
me-no-dev 已提交
59
#include "esp32-hal-ledc.h"
60
#include "esp32-hal-rmt.h"
M
me-no-dev 已提交
61
#include "esp32-hal-sigmadelta.h"
M
me-no-dev 已提交
62
#include "esp32-hal-timer.h"
M
me-no-dev 已提交
63
#include "esp32-hal-bt.h"
64
#include "esp32-hal-psram.h"
65 66 67 68 69 70

#ifndef BOARD_HAS_PSRAM
#ifdef CONFIG_SPIRAM_SUPPORT
#undef CONFIG_SPIRAM_SUPPORT
#endif
#endif
M
me-no-dev 已提交
71

M
me-no-dev 已提交
72 73 74
//returns chip temperature in Celsius
float temperatureRead();

75 76 77 78 79 80
#if CONFIG_AUTOSTART_ARDUINO
//enable/disable WDT for Arduino's setup and loop functions
void enableLoopWDT();
void disableLoopWDT();
#endif

81 82 83 84 85
//enable/disable WDT for the IDLE task on Core 0 (SYSTEM)
void enableCore0WDT();
void disableCore0WDT();
#ifndef CONFIG_FREERTOS_UNICORE
//enable/disable WDT for the IDLE task on Core 1 (Arduino)
86 87 88 89
void enableCore1WDT();
void disableCore1WDT();
#endif

M
Me No Dev 已提交
90 91 92 93 94 95 96 97
//function takes the following frequencies as valid values:
//  240, 160, 80                     <<< For all XTAL types
//  40, 20, 13, 10, 8, 5, 4, 3, 2, 1 <<< For 40MHz XTAL
//  26, 13, 5, 4, 3, 2, 1            <<< For 26MHz XTAL
//  24, 12, 8, 6, 4, 3, 2, 1         <<< For 24MHz XTAL
bool setCpuFrequency(uint32_t cpu_freq_mhz);
uint32_t getCpuFrequency();
uint32_t getApbFrequency();
98

99 100
unsigned long micros();
unsigned long millis();
M
me-no-dev 已提交
101 102 103
void delay(uint32_t);
void delayMicroseconds(uint32_t us);

104 105 106 107
#if !CONFIG_ESP32_PHY_AUTO_INIT
void arduino_phy_init();
#endif

108 109 110 111
#if !CONFIG_AUTOSTART_ARDUINO
void initArduino();
#endif

M
me-no-dev 已提交
112 113 114 115 116
#ifdef __cplusplus
}
#endif

#endif /* HAL_ESP32_HAL_H_ */