mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-06-25 09:51:33 +02:00
76 lines
2.1 KiB
C
76 lines
2.1 KiB
C
/*
|
|
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_
|
|
|
|
//#include <stdint.h>
|
|
//#include <stdbool.h>
|
|
//#include <stdio.h>
|
|
//#include <stdlib.h>
|
|
//#include <stdarg.h>
|
|
//#include <inttypes.h>
|
|
//#include <string.h>
|
|
//#include <math.h>
|
|
//#include "sdkconfig.h"
|
|
//#include "esp_system.h"
|
|
//#include "esp_sleep.h"
|
|
|
|
//#ifdef __cplusplus
|
|
//extern "C" {
|
|
//#endif
|
|
|
|
#if CONFIG_ARDUINO_ISR_IRAM
|
|
#define ARDUINO_ISR_ATTR IRAM_ATTR
|
|
#define ARDUINO_ISR_FLAG ESP_INTR_FLAG_IRAM
|
|
#else
|
|
#define ARDUINO_ISR_ATTR
|
|
#define ARDUINO_ISR_FLAG (0)
|
|
#endif
|
|
|
|
////forward declaration from freertos/portmacro.h
|
|
//void vPortYield(void);
|
|
//#define optimistic_yield(u)
|
|
|
|
#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-gpio.h"
|
|
////#include "esp32-hal-touch.h"
|
|
////#include "esp32-hal-dac.h"
|
|
////#include "esp32-hal-adc.h"
|
|
////#include "esp32-hal-spi.h"
|
|
////#include "esp32-hal-i2c.h"
|
|
////#include "esp32-hal-ledc.h"
|
|
////#include "esp32-hal-rmt.h"
|
|
////#include "esp32-hal-sigmadelta.h"
|
|
////#include "esp32-hal-psram.h"
|
|
////#include "esp32-hal-cpu.h"
|
|
|
|
////returns chip temperature in Celsius
|
|
//float temperatureRead();
|
|
|
|
//#ifdef __cplusplus
|
|
//}
|
|
//#endif
|
|
|
|
#endif /* HAL_ESP32_HAL_H_ */
|