mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-19 23:22:16 +03:00
* Add extern C guard blocks to SDK header files #1352 * fixed some extern C blocks in core and libraries
91 lines
2.9 KiB
C
91 lines
2.9 KiB
C
/*
|
|
* ESPRESSIF MIT License
|
|
*
|
|
* Copyright (c) 2016 <ESPRESSIF SYSTEMS (SHANGHAI) PTE LTD>
|
|
*
|
|
* Permission is hereby granted for use on ESPRESSIF SYSTEMS ESP8266 only, in which case,
|
|
* it is free of charge, to any person obtaining a copy of this software and associated
|
|
* documentation files (the "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the Software is furnished
|
|
* to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all copies or
|
|
* substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#ifndef _OSAPI_H_
|
|
#define _OSAPI_H_
|
|
|
|
#include <string.h>
|
|
#include "user_config.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define os_bzero ets_bzero
|
|
#define os_delay_us ets_delay_us
|
|
#define os_install_putc1 ets_install_putc1
|
|
#define os_install_putc2 ets_install_putc2
|
|
#define os_intr_lock ets_intr_lock
|
|
#define os_intr_unlock ets_intr_unlock
|
|
#define os_isr_attach ets_isr_attach
|
|
#define os_isr_mask ets_isr_mask
|
|
#define os_isr_unmask ets_isr_unmask
|
|
#define os_memcmp ets_memcmp
|
|
#define os_memcpy ets_memcpy
|
|
#define os_memmove ets_memmove
|
|
#define os_memset ets_memset
|
|
#define os_putc ets_putc
|
|
#define os_str2macaddr ets_str2macaddr
|
|
#define os_strcat strcat
|
|
#define os_strchr strchr
|
|
#define os_strcmp ets_strcmp
|
|
#define os_strcpy ets_strcpy
|
|
#define os_strlen ets_strlen
|
|
#define os_strncmp ets_strncmp
|
|
#define os_strncpy ets_strncpy
|
|
#define os_strstr ets_strstr
|
|
#ifdef USE_US_TIMER
|
|
#define os_timer_arm_us(a, b, c) ets_timer_arm_new(a, b, c, 0)
|
|
#endif
|
|
#define os_timer_arm(a, b, c) ets_timer_arm_new(a, b, c, 1)
|
|
#define os_timer_disarm ets_timer_disarm
|
|
#define os_timer_done ets_timer_done
|
|
#define os_timer_handler_isr ets_timer_handler_isr
|
|
#define os_timer_init ets_timer_init
|
|
#define os_timer_setfn ets_timer_setfn
|
|
|
|
#define os_sprintf ets_sprintf
|
|
#define os_update_cpu_frequency ets_update_cpu_frequency
|
|
|
|
extern int os_printf_plus(const char * format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
#ifdef USE_OPTIMIZE_PRINTF
|
|
#define os_printf(fmt, ...) do { \
|
|
static const char flash_str[] ICACHE_RODATA_ATTR STORE_ATTR = fmt; \
|
|
os_printf_plus(flash_str, ##__VA_ARGS__); \
|
|
} while(0)
|
|
#else
|
|
#define os_printf os_printf_plus
|
|
#endif
|
|
|
|
unsigned long os_random(void);
|
|
int os_get_random(unsigned char *buf, size_t len);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|