mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-10-28 07:44:22 +00:00
BMP280
This commit is contained in:
@@ -1 +1 @@
|
||||
4c2820d377d1375e787bcef612f0c32c1427d183
|
||||
ref: refs/heads/main
|
||||
|
||||
@@ -18,7 +18,7 @@ set(HEAD_HASH)
|
||||
file(READ "/home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Temperture-Node-v2/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
|
||||
|
||||
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
|
||||
set(GIT_DIR "/home/abobkov/esp/v5.4.1/esp-idf/.git")
|
||||
set(GIT_DIR "/home/abobkov/MyProjects/ESP-Nodes/.git")
|
||||
# handle git-worktree
|
||||
if(EXISTS "${GIT_DIR}/commondir")
|
||||
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
|
||||
|
||||
@@ -1 +1 @@
|
||||
4c2820d377d1375e787bcef612f0c32c1427d183
|
||||
b371b04de458ccf64af914578c4f4bedd667e2fc
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -29829,87 +29829,6 @@
|
||||
"title": "Wi-Fi Provisioning Manager",
|
||||
"type": "menu"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"children": [],
|
||||
"depends_on": null,
|
||||
"help": "Select this option to use the older ESP-IDF I2C driver API (driver/i2c.h)\ninstead of the newer driver API (driver/i2c_master.h).\n\nThis is automatically determined by the build system based on your ESP-IDF version.\nFor ESP-IDF versions prior to v5.3, the legacy driver will be used automatically.\nYou can manually override this setting if needed.",
|
||||
"id": "I2CDEV_USE_LEGACY_DRIVER",
|
||||
"name": "I2CDEV_USE_LEGACY_DRIVER",
|
||||
"range": null,
|
||||
"title": "Use Legacy I2C Driver API",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"children": [],
|
||||
"depends_on": "!IDF_TARGET_ESP8266",
|
||||
"help": "When enabled, internal pullup resistors are automatically enabled\nwhen both sda_pullup_en and scl_pullup_en are false (default state).\n\nUseful for development and prototyping. Disable for production \nsystems with external pullups to avoid interference.\n\nConsiderations:\n- May increase power consumption slightly\n- Could interfere with carefully tuned external pullups\n- Not recommended for battery-powered applications\n\nNote: This option only affects the modern i2cdev driver (ESP32 family).\nLegacy driver behavior is unchanged for compatibility.",
|
||||
"id": "I2CDEV_AUTO_ENABLE_PULLUPS",
|
||||
"name": "I2CDEV_AUTO_ENABLE_PULLUPS",
|
||||
"range": null,
|
||||
"title": "Automatically enable internal I2C pullups when not configured",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"children": [],
|
||||
"depends_on": null,
|
||||
"help": "Default SDA pin for I2C devices.",
|
||||
"id": "I2CDEV_DEFAULT_SDA_PIN",
|
||||
"name": "I2CDEV_DEFAULT_SDA_PIN",
|
||||
"range": null,
|
||||
"title": "Default I2C SDA pin",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"children": [],
|
||||
"depends_on": null,
|
||||
"help": "Default SCL pin for I2C devices.",
|
||||
"id": "I2CDEV_DEFAULT_SCL_PIN",
|
||||
"name": "I2CDEV_DEFAULT_SCL_PIN",
|
||||
"range": null,
|
||||
"title": "Default I2C SCL pin",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"children": [],
|
||||
"depends_on": null,
|
||||
"help": "Maximum number of devices that can be registered on a single I2C port.",
|
||||
"id": "I2CDEV_MAX_DEVICES_PER_PORT",
|
||||
"name": "I2CDEV_MAX_DEVICES_PER_PORT",
|
||||
"range": null,
|
||||
"title": "Maximum number of devices per I2C port",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"children": [],
|
||||
"depends_on": null,
|
||||
"help": null,
|
||||
"id": "I2CDEV_TIMEOUT",
|
||||
"name": "I2CDEV_TIMEOUT",
|
||||
"range": [
|
||||
10,
|
||||
5000
|
||||
],
|
||||
"title": "I2C transaction timeout, milliseconds",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"children": [],
|
||||
"depends_on": null,
|
||||
"help": "Attention! After enabling this option, all I2C device\ndrivers will become non-thread safe. \nUse this option if you need to access your I2C devices\nfrom interrupt handlers.",
|
||||
"id": "I2CDEV_NOLOCK",
|
||||
"name": "I2CDEV_NOLOCK",
|
||||
"range": null,
|
||||
"title": "Disable the use of mutexes",
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"depends_on": null,
|
||||
"id": "component-config-i2c-device-library",
|
||||
"title": "I2C Device Library",
|
||||
"type": "menu"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -734,10 +734,6 @@
|
||||
#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16
|
||||
#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30
|
||||
#define CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN 1
|
||||
#define CONFIG_I2CDEV_DEFAULT_SDA_PIN 21
|
||||
#define CONFIG_I2CDEV_DEFAULT_SCL_PIN 22
|
||||
#define CONFIG_I2CDEV_MAX_DEVICES_PER_PORT 8
|
||||
#define CONFIG_I2CDEV_TIMEOUT 1000
|
||||
#define CONFIG_CU_DIAGNOSTICS_COLOR_ALWAYS 1
|
||||
#define CONFIG_I2C_BUS_DYNAMIC_CONFIG 1
|
||||
#define CONFIG_I2C_MS_TO_WAIT 200
|
||||
|
||||
@@ -512,13 +512,6 @@
|
||||
"HTTPD_QUEUE_WORK_BLOCKING": false,
|
||||
"HTTPD_SERVER_EVENT_POST_TIMEOUT": 2000,
|
||||
"HTTPD_WS_SUPPORT": false,
|
||||
"I2CDEV_AUTO_ENABLE_PULLUPS": false,
|
||||
"I2CDEV_DEFAULT_SCL_PIN": 22,
|
||||
"I2CDEV_DEFAULT_SDA_PIN": 21,
|
||||
"I2CDEV_MAX_DEVICES_PER_PORT": 8,
|
||||
"I2CDEV_NOLOCK": false,
|
||||
"I2CDEV_TIMEOUT": 1000,
|
||||
"I2CDEV_USE_LEGACY_DRIVER": false,
|
||||
"I2C_BUS_BACKWARD_CONFIG": false,
|
||||
"I2C_BUS_DYNAMIC_CONFIG": true,
|
||||
"I2C_BUS_REMOVE_NULL_MEM_ADDR": false,
|
||||
|
||||
@@ -73,7 +73,6 @@ source "/home/abobkov/esp/v5.4.1/esp-idf/components/usb/Kconfig"
|
||||
source "/home/abobkov/esp/v5.4.1/esp-idf/components/vfs/Kconfig"
|
||||
source "/home/abobkov/esp/v5.4.1/esp-idf/components/wear_levelling/Kconfig"
|
||||
source "/home/abobkov/esp/v5.4.1/esp-idf/components/wifi_provisioning/Kconfig"
|
||||
source "/home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Temperture-Node-v2/managed_components/esp-idf-lib__i2cdev/Kconfig"
|
||||
source "/home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Temperture-Node-v2/managed_components/espressif__cmake_utilities/Kconfig"
|
||||
source "/home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Temperture-Node-v2/managed_components/espressif__i2c_bus/Kconfig"
|
||||
source "/home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Temperture-Node-v2/managed_components/espressif__mqtt/Kconfig"
|
||||
@@ -1,70 +1,4 @@
|
||||
dependencies:
|
||||
esp-idf-lib/bmp280:
|
||||
component_hash: 82b01a37c200ed66a6c451026e2afdbe8046c6f702d41085e5a1d83aec3a90d8
|
||||
dependencies:
|
||||
- name: esp-idf-lib/esp_idf_lib_helpers
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: '*'
|
||||
- name: esp-idf-lib/i2cdev
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: '*'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32
|
||||
- esp32c2
|
||||
- esp32c3
|
||||
- esp32c5
|
||||
- esp32c6
|
||||
- esp32c61
|
||||
- esp32h2
|
||||
- esp32p4
|
||||
- esp32s2
|
||||
- esp32s3
|
||||
version: 1.0.7
|
||||
esp-idf-lib/esp_idf_lib_helpers:
|
||||
component_hash: a8049b1e609679fb54b2d57b0399dd29c4d1fda09a797edac9926f7810aa5703
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
targets:
|
||||
- esp32
|
||||
- esp32c2
|
||||
- esp32c3
|
||||
- esp32c5
|
||||
- esp32c6
|
||||
- esp32c61
|
||||
- esp32h2
|
||||
- esp32p4
|
||||
- esp32s2
|
||||
- esp32s3
|
||||
version: 1.3.10
|
||||
esp-idf-lib/i2cdev:
|
||||
component_hash: 11c08f9e1a7d346b5dd763196dc2567cf2209ae49042402c2c2d296624601c14
|
||||
dependencies:
|
||||
- name: esp-idf-lib/esp_idf_lib_helpers
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: '*'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
targets:
|
||||
- esp32
|
||||
- esp32c2
|
||||
- esp32c3
|
||||
- esp32c5
|
||||
- esp32c6
|
||||
- esp32c61
|
||||
- esp32h2
|
||||
- esp32p4
|
||||
- esp32s2
|
||||
- esp32s3
|
||||
version: 2.0.8
|
||||
espressif/bme280:
|
||||
component_hash: 873d97d0bd30004f45d1653f078a4bafe39c1767e57d4bae0f0a13bc3a4d5e3d
|
||||
dependencies:
|
||||
@@ -122,10 +56,9 @@ dependencies:
|
||||
type: idf
|
||||
version: 5.4.1
|
||||
direct_dependencies:
|
||||
- esp-idf-lib/bmp280
|
||||
- espressif/bme280
|
||||
- espressif/mqtt
|
||||
- idf
|
||||
manifest_hash: 3ee40103ded0cc281d683ff2615fcc36719800639b0ee2b81bfa2ecdaa03b444
|
||||
manifest_hash: e6f276994a8055ca6c2c122162e637638b463824e703ffba4c57c1695ff8422a
|
||||
target: esp32
|
||||
version: 2.0.0
|
||||
|
||||
@@ -1869,18 +1869,6 @@ CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y
|
||||
# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set
|
||||
# end of Wi-Fi Provisioning Manager
|
||||
|
||||
#
|
||||
# I2C Device Library
|
||||
#
|
||||
# CONFIG_I2CDEV_USE_LEGACY_DRIVER is not set
|
||||
# CONFIG_I2CDEV_AUTO_ENABLE_PULLUPS is not set
|
||||
CONFIG_I2CDEV_DEFAULT_SDA_PIN=21
|
||||
CONFIG_I2CDEV_DEFAULT_SCL_PIN=22
|
||||
CONFIG_I2CDEV_MAX_DEVICES_PER_PORT=8
|
||||
CONFIG_I2CDEV_TIMEOUT=1000
|
||||
# CONFIG_I2CDEV_NOLOCK is not set
|
||||
# end of I2C Device Library
|
||||
|
||||
#
|
||||
# CMake Utilities
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user