Merge branch 'bugfix/extern_c_decl' into 'master'

[cxx]: bugfixed extern c decl

See merge request espressif/esp-idf!12554
pull/6718/head
Angus Gratton 2021-03-09 00:01:56 +00:00
commit d6112c12b7
2 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -13,12 +13,12 @@
#pragma once
#include "driver/touch_sensor_common.h"
#ifdef __cplusplus
extern "C" {
#endif
#include "driver/touch_sensor_common.h"
/**
* @brief Set touch sensor FSM start
* @note Start FSM after the touch sensor FSM mode is set.

Wyświetl plik

@ -15,14 +15,14 @@
#ifndef __ESP_ADC_CAL_H__
#define __ESP_ADC_CAL_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include "esp_err.h"
#include "driver/adc.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Type of calibration value used in characterization
*/