Add files via upload

This commit is contained in:
JasonYANG17 2024-06-24 02:45:41 +08:00 committed by GitHub
parent 921915af8c
commit 8abdb14504
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 795 additions and 487 deletions

View File

@ -12,6 +12,10 @@
platform = espressif32 platform = espressif32
board = airm2m_core_esp32c3 board = airm2m_core_esp32c3
framework = arduino framework = arduino
board_build.partitions = tinyuf2-partitions-4MB.csv
;将CPU频率设置为240MHz
board_build.f_cpu = 130000000L
board_build.f_flash = 80000000L
lib_deps = lib_deps =
olikraus/U8g2 @ ^2.35.17 olikraus/U8g2 @ ^2.35.17
@ -32,3 +36,31 @@ lib_deps =
# The exact version # The exact version
bblanchon/ArduinoJson @ 7.0.4 bblanchon/ArduinoJson @ 7.0.4
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
polygontechmx/TOTP++ @ ^1.0.1
# Accept only backwards compatible bug fixes
# (any version with the same major and minor versions, and an equal or greater patch version)
polygontechmx/TOTP++ @ ~1.0.1
# The exact version
polygontechmx/TOTP++ @ 1.0.1
arduino-libraries/NTPClient @ ^3.2.1
# Accept only backwards compatible bug fixes
# (any version with the same major and minor versions, and an equal or greater patch version)
arduino-libraries/NTPClient @ ~3.2.1
# The exact version
arduino-libraries/NTPClient @ 3.2.1
t-vk/ESP32 BLE Keyboard @ ^0.3.2
# Accept only backwards compatible bug fixes
# (any version with the same major and minor versions, and an equal or greater patch version)
t-vk/ESP32 BLE Keyboard @ ~0.3.2
# The exact version
t-vk/ESP32 BLE Keyboard @ 0.3.2

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,6 @@
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000,
otadata, data, ota, 0xe000, 0x2000,
app0, app, ota_0, 0x10000, 0x200000,
spiffs, data, spiffs, 0x210000,0x1E0000,
coredump, data, coredump,0x3F0000,0x10000,
1 # Name Type SubType Offset Size Flags
2 nvs data nvs 0x9000 0x5000
3 otadata data ota 0xe000 0x2000
4 app0 app ota_0 0x10000 0x200000
5 spiffs data spiffs 0x210000 0x1E0000
6 coredump data coredump 0x3F0000 0x10000