Czujniki T/H/P/IL i IAS - zgłoszenia, uwagi, pomysły [bramka Zigbee]

Moderator: vajera

User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

bokk wrote: Thu Jun 26, 2025 12:09 am Proszę o dodanie - Zigbee czujnik drzwi kontakt okienny czujnik otwarcia i zamknięcia /wibracji

Peer Manufacturer is "HOBEIAN"
Peer Model is "ZG-102ZM"

https://pl.aliexpress.com/item/10050090 ... pt=glo2pol
+BWNU (0.8.43)
To jest Tuya Vibration Sensor - można mu ustawić "sensitivity" między 1 a 50.

Code: Select all

.numeric("sensitivity", ea.STATE_SET)
                .withValueMin(1)
                .withValueMax(50)
                .withValueStep(1)
                .withUnit("x")
                .withDescription("The larger the value, the more sensitive it is (refresh and update only while active)"),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "vibration", tuya.valueConverter.trueFalse1],
                [101, "contact", tuya.valueConverter.inverse],
                [4, "battery", tuya.valueConverter.raw],
                [6, "sensitivity", tuya.valueConverter.raw],
Last edited by vajera on Thu Jun 26, 2025 12:13 pm, edited 1 time in total.
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

endrju_88 wrote: Tue Jun 24, 2025 6:48 pm Jest szansa na dodanie czujnika 4 in 1 zigbee ?

Code: Select all

_TZE200_rhgsbacq::TS0601
https://pl.aliexpress.com/item/10050090 ... gJktfD_BwE
+BWNU (0.8.43)

Code: Select all

e
                .numeric("fading_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(28800)
                .withValueStep(1)
                .withUnit("s")
                .withDescription("Motion keep time"),
            e.binary("indicator", ea.STATE_SET, "ON", "OFF").withDescription("LED indicator mode"),
            e
                .numeric("illuminance_interval", ea.STATE_SET)
                .withValueMin(1)
                .withValueMax(720)
                .withValueStep(1)
                .withUnit("minutes")
                .withDescription("Light sensing sampling(refresh and update only while active)"),
            e
                .numeric("motion_detection_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(19)
                .withValueStep(1)
                .withUnit("x")
                .withDescription("The larger the value, the more sensitive it is (refresh and update only while active)"),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "presence", tuya.valueConverter.trueFalse1],
                [106, "illuminance", tuya.valueConverter.raw],
                [102, "fading_time", tuya.valueConverter.raw],
                [2, "motion_detection_sensitivity", tuya.valueConverter.raw],
                [108, "indicator", tuya.valueConverter.onOff],
                [110, "battery", tuya.valueConverter.raw],
                [111, "temperature", tuya.valueConverter.divideBy10],
                [101, "humidity", tuya.valueConverter.raw],
                [109, "temperature_unit", tuya.valueConverter.temperatureUnit],
                [105, "temperature_calibration", tuya.valueConverter.divideBy10],
                [104, "humidity_calibration", tuya.valueConverter.raw],
                [107, "illuminance_interval", tuya.valueConverter.raw],
                
oraz czujnika wykrywania deszczu z detekcją jasności światła :

Code: Select all

_TZE200_u6x1zyv2::TS0601
https://pl.aliexpress.com/item/10050091 ... Redirect=y
+BWNU (0.8.43)

Code: Select all

e
                .numeric("sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withUnit("x")
                .withDescription("The larger the value, the more sensitive it is (refresh and update only while active)"),
            e
                .numeric("illuminance_sampling", ea.STATE_SET)
                .withValueMin(1)
                .withValueMax(480)
                .withValueStep(1)
                .withUnit("minutes")
                .withDescription("Brightness acquisition interval (refresh and update only while active)"),
            e.battery(),
        ],
        meta: {
            tuyaDatapoints: [
                [
                    1,
                    "rainwater",
                    tuya.valueConverterBasic.lookup({
                        none: tuya.enum(0),
                        raining: tuya.enum(1),
                    }),
                ],
                [102, "illuminance", tuya.valueConverter.raw],
                [104, "battery", tuya.valueConverter.raw],
                [2, "sensitivity", tuya.valueConverter.raw],
                [101, "illuminance_sampling", tuya.valueConverter.raw],

Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
bokk
Posts: 730
Joined: Fri Mar 01, 2019 4:26 am
Has thanked: 7 times
Been thanked: 25 times

Post

vajera wrote: Thu Jun 26, 2025 12:04 pm
bokk wrote: Thu Jun 26, 2025 12:09 am Proszę o dodanie - Zigbee czujnik drzwi kontakt okienny czujnik otwarcia i zamknięcia /wibracji

Peer Manufacturer is "HOBEIAN"
Peer Model is "ZG-102ZM"

https://pl.aliexpress.com/item/10050090 ... pt=glo2pol
+BWNU (0.8.43)
To jest Tuya Vibration Sensor - można mu ustawić "sensitivity" między 1 a 50.

Code: Select all

.numeric("sensitivity", ea.STATE_SET)
                .withValueMin(1)
                .withValueMax(50)
                .withValueStep(1)
                .withUnit("x")
                .withDescription("The larger the value, the more sensitive it is (refresh and update only while active)"),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "vibration", tuya.valueConverter.trueFalse1],
                [101, "contact", tuya.valueConverter.inverse],
                [4, "battery", tuya.valueConverter.raw],
                [6, "sensitivity", tuya.valueConverter.raw],
A po sparowaniu z bramką Sonoff Zigbee pokazuje jedynie kontrakton :)
You do not have the required permissions to view the files attached to this post.
endrju_88
Posts: 448
Joined: Tue Apr 25, 2023 1:02 pm
Has thanked: 3 times
Been thanked: 4 times

Post

vajera wrote: Thu Jun 26, 2025 12:12 pm
endrju_88 wrote: Tue Jun 24, 2025 6:48 pm Jest szansa na dodanie czujnika 4 in 1 zigbee ?

Code: Select all

_TZE200_rhgsbacq::TS0601
https://pl.aliexpress.com/item/10050090 ... gJktfD_BwE
+BWNU (0.8.43)

Code: Select all

e
                .numeric("fading_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(28800)
                .withValueStep(1)
                .withUnit("s")
                .withDescription("Motion keep time"),
            e.binary("indicator", ea.STATE_SET, "ON", "OFF").withDescription("LED indicator mode"),
            e
                .numeric("illuminance_interval", ea.STATE_SET)
                .withValueMin(1)
                .withValueMax(720)
                .withValueStep(1)
                .withUnit("minutes")
                .withDescription("Light sensing sampling(refresh and update only while active)"),
            e
                .numeric("motion_detection_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(19)
                .withValueStep(1)
                .withUnit("x")
                .withDescription("The larger the value, the more sensitive it is (refresh and update only while active)"),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "presence", tuya.valueConverter.trueFalse1],
                [106, "illuminance", tuya.valueConverter.raw],
                [102, "fading_time", tuya.valueConverter.raw],
                [2, "motion_detection_sensitivity", tuya.valueConverter.raw],
                [108, "indicator", tuya.valueConverter.onOff],
                [110, "battery", tuya.valueConverter.raw],
                [111, "temperature", tuya.valueConverter.divideBy10],
                [101, "humidity", tuya.valueConverter.raw],
                [109, "temperature_unit", tuya.valueConverter.temperatureUnit],
                [105, "temperature_calibration", tuya.valueConverter.divideBy10],
                [104, "humidity_calibration", tuya.valueConverter.raw],
                [107, "illuminance_interval", tuya.valueConverter.raw],
                
oraz czujnika wykrywania deszczu z detekcją jasności światła :

Code: Select all

_TZE200_u6x1zyv2::TS0601
https://pl.aliexpress.com/item/10050091 ... Redirect=y
+BWNU (0.8.43)

Code: Select all

e
                .numeric("sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withUnit("x")
                .withDescription("The larger the value, the more sensitive it is (refresh and update only while active)"),
            e
                .numeric("illuminance_sampling", ea.STATE_SET)
                .withValueMin(1)
                .withValueMax(480)
                .withValueStep(1)
                .withUnit("minutes")
                .withDescription("Brightness acquisition interval (refresh and update only while active)"),
            e.battery(),
        ],
        meta: {
            tuyaDatapoints: [
                [
                    1,
                    "rainwater",
                    tuya.valueConverterBasic.lookup({
                        none: tuya.enum(0),
                        raining: tuya.enum(1),
                    }),
                ],
                [102, "illuminance", tuya.valueConverter.raw],
                [104, "battery", tuya.valueConverter.raw],
                [2, "sensitivity", tuya.valueConverter.raw],
                [101, "illuminance_sampling", tuya.valueConverter.raw],

Super. Dzięki. Mam tylko pytanie. Fajnie ,że podałeś zakres wartości do danego kanału urządzenia , tylko czy istnieje jakieś uniwersalne polecenie w Telnet gdzie będę tylko zmieniał nr. kanału urządzenia i nr. parametru z moją nadaną wartością ? Np. jeśli w czujniku parametr sensivity to nr. 2 a Value min=0 i value max=9 a chce mu zadać wartość np. 7 to jakiego polecenia użyć ?
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

bokk wrote: Thu Jun 26, 2025 1:10 pm [quote=vajera post_id=208128 time=1750939495
A po sparowaniu z bramką Sonoff Zigbee pokazuje jedynie kontrakton :)
Są dwie możliwości:
  1. Bramka Sonoff nie pokazuje wszystkich opcji 😉
  2. Firmware jednego czujnika wgrane do innego.
Po sparowaniu z bramką Supla łatwo to zweryfikujesz.
Last edited by vajera on Thu Jun 26, 2025 2:50 pm, edited 1 time in total.
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

endrju_88 wrote: Thu Jun 26, 2025 1:33 pm

Code: Select all

e
                .numeric("fading_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(28800)
                .withValueStep(1)
                .withUnit("s")
                .withDescription("Motion keep time"),
            e.binary("indicator", ea.STATE_SET, "ON", "OFF").withDescription("LED indicator mode"),
            e
                .numeric("illuminance_interval", ea.STATE_SET)
                .withValueMin(1)
                .withValueMax(720)
                .withValueStep(1)
                .withUnit("minutes")
                .withDescription("Light sensing sampling(refresh and update only while active)"),
            e
                .numeric("motion_detection_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(19)
                .withValueStep(1)
                .withUnit("x")
                .withDescription("The larger the value, the more sensitive it is (refresh and update only while active)"),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "presence", tuya.valueConverter.trueFalse1],
                [106, "illuminance", tuya.valueConverter.raw],
                [102, "fading_time", tuya.valueConverter.raw],
                [2, "motion_detection_sensitivity", tuya.valueConverter.raw],
                [108, "indicator", tuya.valueConverter.onOff],
                [110, "battery", tuya.valueConverter.raw],
                [111, "temperature", tuya.valueConverter.divideBy10],
                [101, "humidity", tuya.valueConverter.raw],
                [109, "temperature_unit", tuya.valueConverter.temperatureUnit],
Super. Dzięki. Mam tylko pytanie. Fajnie ,że podałeś zakres wartości do danego kanału urządzenia , tylko czy istnieje jakieś uniwersalne polecenie w Telnet gdzie będę tylko zmieniał nr. kanału urządzenia i nr. parametru z moją nadaną wartością ? Np. jeśli w czujniku parametr sensivity to nr. 2 a Value min=0 i value max=9 a chce mu zadać wartość np. 7 to jakiego polecenia użyć ?
  1. W planach mam rozbudowę nowego GUI o gotowe kafelki dla konkretnych grup urządzeń, ale póki co zostaje tylko konsola (Telnet).
  2. Uniwersalnego polecenia nie ma, ale poniżej algorytm budowania poleceń dla urządzeń opartych o Tuya custom cluster (0xEF00).
Polecenia najczęściej budujemy według jednego z poniższych schematów:
  1. custom-cmd nr_kanału_Supla 0xEF00 0 SET 7 AAAADD0T0001XX, gdzie:
    1. AAAA to tzw. transaction id - losowy numer z zakresu 0000 - FFFF, którym odpowie urządzenie końcowe - bramka wysyła losowy numer, ale można wpisać cokolwiek, np. 1234;
    2. DD to tzw. Tuya datapoint, np. [108, "indicator"] - UWAGA - wartość tę podajemy w systemie szesnastkowym, ale bez 0x (108 = 6C);
    3. 0T to typ danych: 01 BOOL(OnOff), 04(enum);
    4. XX - to wartość (również w systemie szesnastkowym bez 0x);
    5. podsumowując - chcąc ustawić wartość DP "indicator " (jest typu OnOff) wpisujemy:

      custom-cmd nr_kanału_Supla 0xEF00 0 SET 7 12346C01000100 dla wyłącz lub

      custom-cmd nr_kanału_Supla 0xEF00 0 SET 7 12346C01000101 dla włącz.
  2. custom-cmd nr_kanału_Supla 0xEF00 0 SET 10 AAAADD020004XXXXXXXX, gdzie:
    1. AAAA to tzw. transaction id - losowy numer z zakresu 0000 - FFFF, którym odpowie urządzenie końcowe - bramka wysyła losowy numer, ale można wpisać cokolwiek, np. 1234;
    2. DD to tzw. Tuya datapoint, np. [102, "fading_time"] - UWAGA - wartość tę podajemy w systemie szesnastkowym, ale bez 0x (102 = 66);
    3. 02 to typ danych: 02 VALUE;
    4. XXXXXXXX - to wartość (również w systemie szesnastkowym bez 0x) - od najbardziej znaczącego bajtu do najmniej znaczącego bajtu, np. 28800 = 7080 = 00007080;
    5. podsumowując - chcąc ustawić wartość DP "fading_time" (jest typu tuya.valueConverter.raw) wpisujemy:

      custom-cmd nr_kanału_Supla 0xEF00 0 SET 10 12346602000400007080 dla maksymalnego czasu (28800 sekund = 8 godzin).
Uff...mam nadzieję, że w miarę klarownie to wyjaśniłem - w ramach zadania domowego 😉 możesz napisać i wrzucić tutaj polecenie dla Twojego pytania o "sensitivity ".
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
bokk
Posts: 730
Joined: Fri Mar 01, 2019 4:26 am
Has thanked: 7 times
Been thanked: 25 times

Post

vajera wrote: Thu Jun 26, 2025 2:00 pm
bokk wrote: Thu Jun 26, 2025 1:10 pm [quote=vajera post_id=208128 time=1750939495
A po sparowaniu z bramką Sonoff Zigbee pokazuje jedynie kontrakton :)
Są dwie możliwości:
  1. Bramka Sonoff nie pokazuje wszystkich opcji 😉
  2. Firmware jednego czujnika wgrane do innego.
    [/]

    Po sparowaniu z bramką Supla łatwo to zweryfikujesz.
Faktycznie bramka Sonoff nie pokazuje wszystkich opcji, a po dodaniu do bramki Z2S są 2 opcje VIBRATION- czujnik uzbrojenia alarmu i CONTACT- czujnik otwarcia drzwi ale bramka się cały czas restartuje i nic więcej nie można ustawić
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

bokk wrote: Thu Jun 26, 2025 2:50 pm Faktycznie bramka Sonoff nie pokazuje wszystkich opcji, a po dodaniu do bramki Z2S są 2 opcje VIBRATION- czujnik uzbrojenia alarmu i CONTACT- czujnik otwarcia drzwi ale bramka się cały czas restartuje i nic więcej nie można ustawić
Opcje bramka wstawia zgodnie z definicją urządzenia w bazie, więc to jeszcze nic nie oznacza - musisz zweryfikować czy czujnik wysyła oba komunikaty.

Co do restartów bramki to musiałbyś wrzucić logi, chyba że ktoś jeszcze doświadcza tego problemu i zebrał już logi?
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
bokk
Posts: 730
Joined: Fri Mar 01, 2019 4:26 am
Has thanked: 7 times
Been thanked: 25 times

Post

vajera wrote: Thu Jun 26, 2025 2:57 pm
bokk wrote: Thu Jun 26, 2025 2:50 pm Faktycznie bramka Sonoff nie pokazuje wszystkich opcji, a po dodaniu do bramki Z2S są 2 opcje VIBRATION- czujnik uzbrojenia alarmu i CONTACT- czujnik otwarcia drzwi ale bramka się cały czas restartuje i nic więcej nie można ustawić
Opcje bramka wstawia zgodnie z definicją urządzenia w bazie, więc to jeszcze nic nie oznacza - musisz zweryfikować czy czujnik wysyła oba komunikaty.

Co do restartów bramki to musiałbyś wrzucić logi, chyba że ktoś jeszcze doświadcza tego problemu i zebrał już logi?

Code: Select all

Using 'COM8' as serial port.
Unexpected error: could not open port 'COM8': PermissionError(13, 'Odmowa dostępu.', None, 5)
[17:06:24]ESP-ROM:esp32c6-20220919
[17:06:24]Build:Sep 19 2022
[17:06:24]rst:0xc (SW_CPU),boot:0xc (SPI_FAST_FLASH_BOOT)
[17:06:24]Saved PC:0x4001975a
[17:06:24]SPIWP:0xee
[17:06:24]mode:DIO, clock div:2
[17:06:24]load:0x40875720,len:0x1260
[17:06:24]load:0x4086c110,len:0xdc4
[17:06:24]load:0x4086e610,len:0x3018
[17:06:24]entry 0x4086c110
[17:06:25][     1][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:25][    12][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:25][    23][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:25][    35][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:25][    46][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:25][    57][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:25][    69][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:25][    80][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:25][    91][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:25][   103][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:25][   114][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:25][   125][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:25][   137][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DM (38) successfully set to 0x42062f22
[17:06:25][   148][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DP (39) successfully set to 0x42062f22
[17:06:25][   160][V][NetworkServer.h:41] NetworkServer(): NetworkServer::NetworkServer(port=23, ...)
[17:06:25][   168][V][ZigbeeEP.cpp:21] ZigbeeEP(): Endpoint: 1
[17:06:25][   191][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 17 successfully set to type UART_RX (2) with bus 0x4081bd68
[17:06:25][   202][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 16 successfully set to type UART_TX (3) with bus 0x4081bd68
[17:06:25][   212][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 12 successfully set to type USB_DM (38) with bus 0x40826df4
[17:06:25][   223][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 13 successfully set to type USB_DP (39) with bus 0x40826df4
[17:06:47]Guru Meditation Error: Core  0 panic'ed (Stack protection fault). 
[17:06:47]
[17:06:47]Detected in task "async_tcp" at 0x42025120
[17:06:47]Stack pointer: 0x4086b030
[17:06:47]Stack bounds: 0x4086b05c - 0x4086f050
[17:06:47]
[17:06:47]
[17:06:47]Core  0 register dump:
[17:06:47]MEPC    : 0x42025146  RA      : 0x42026f2a  SP      : 0x4086b030  GP      : 0x40814c24  
[17:06:47]TP      : 0x4086f050  T0      : 0x40022494  T1      : 0xffffffe0  T2      : 0x33323130  
[17:06:47]S0/FP   : 0x40872ce4  S1      : 0x000006a9  A0      : 0x40872d3c  A1      : 0x4086b0a0  
[17:06:47]A2      : 0x4086ed8c  A3      : 0x4086b0ac  A4      : 0x4086b0ac  A5      : 0x4086b0ac  
[17:06:47]A6      : 0x0000000c  A7      : 0x0000003b  S2      : 0x4086ed8c  S3      : 0x40872d3c  
[17:06:47]S4      : 0x4086b170  S5      : 0x4086b0a0  S6      : 0x00000000  S7      : 0x00000020  
[17:06:47]S8      : 0x4085a128  S9      : 0xffffffff  S10     : 0x40872cec  S11     : 0x4086ed8c  
[17:06:47]T3      : 0x6e6d6c6b  T4      : 0x6a696867  T5      : 0x66656463  T6      : 0x62613938  
[17:06:47]MSTATUS : 0x00001881  MTVEC   : 0x40800001  MCAUSE  : 0x0000001b  MTVAL   : 0x00055483  
[17:06:47]MHARTID : 0x00000000  
[17:06:47]
[17:06:47]Stack memory:
[17:06:47]4086b030: 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0xa5a5a500 0xbaad5678
[17:06:47]4086b050: 0x0000400c 0xabba1234 0x00004000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5
[17:06:47]4086b070: 0xa5a5a5a5 0xffffffff 0x4086b0cc 0x00000020 0x000006a8 0x4086ed8c 0x4086b170 0x4086ed8c
[17:06:47]4086b090: 0x40872d3c 0x000006a9 0x40872ce4 0x42026f2a 0x4085a128 0x00000004 0x4086b200 0xa5a5a5a5
[17:06:47]4086b0b0: 0xa5a5a5a5 0xa5a5a5a5 0x40872cdc 0x4086ed8c 0xa5a5a5a5 0x40872ce4 0x06a906a8 0xa5a5a5a5
[17:06:48]4086b0d0: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x4085a128 0x00000004 0x4086b200 0x4085a128
[17:06:48]4086b0f0: 0x00000004 0x00000000 0x40872d2c 0x42026ba4 0x40872cdc 0xffffffff 0x4086b1dc 0x00000020
[17:06:48]4086b110: 0x000006a6 0x4086ed8c 0x4086b280 0x4086ed8c 0x40872d3c 0x40872cdc 0x00000020 0x420271e6
[17:06:48]4086b130: 0x4086ed8c 0x40872d34 0x40872d3c 0x4086ed8c 0x40871b4c 0x00000007 0x4086b300 0xa5a5a5a5
[17:06:48]4086b150: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x40872cdc 0x4086ed8c
[17:06:48]4086b170: 0x40872d3c 0x4086ed8c 0x00000007 0x4086b300 0xa5a5a5a5 0xffffffff 0x4086b1dc 0x00000020
[17:06:48]4086b190: 0x000006a6 0x4086ed8c 0x4086b280 0x4086ed8c 0x40872cdc 0x000006a7 0x40872cd4 0x42026f7e
[17:06:48]4086b1b0: 0x40871b4c 0x00000007 0x4086b300 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x40872c7c 0x4086ed8c
[17:06:48]4086b1d0: 0xa5a5a5a5 0x40872c84 0x069d069c 0x40872d3c 0x4086ed8c 0x40872cd4 0x06a706a6 0x4086ed8c
[17:06:48]4086b1f0: 0x4086b1dc 0x4086ed8c 0x4086b300 0x40871b4c 0x00000007 0x00000000 0x40872ccc 0x42026ba4
[17:06:48]4086b210: 0x40872c7c 0xffffffff 0x4086b2ec 0x00000020 0x0000069a 0x4086ed8c 0x4086b390 0x4086ed8c
[17:06:48]4086b230: 0x40872cdc 0x40872c7c 0x00000020 0x420271e6 0x4086ed8c 0x40872cd4 0x40872cdc 0x4086ed8c
[17:06:48]4086b250: 0x40871b4c 0x00000007 0x4086b400 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000
[17:06:48]4086b270: 0xffffffff 0xa5a5a5a5 0x40872c7c 0x4086ed8c 0x40872cdc 0x4086ed8c 0x00000007 0x4086b400
[17:06:48]4086b290: 0xa5a5a5a5 0xffffffff 0x4086b2ec 0x00000020 0x0000069a 0x4086ed8c 0x4086b390 0x4086ed8c
[17:06:48]4086b2b0: 0x40872c7c 0x0000069b 0x40872c74 0x42026f7e 0x40871b4c 0x00000007 0x4086b400 0xa5a5a5a5
[17:06:48]4086b2d0: 0xa5a5a5a5 0xa5a5a5a5 0x40872c1c 0x4086ed8c 0xa5a5a5a5 0x40872c24 0x06910690 0x40872cdc
[17:06:48]4086b2f0: 0x4086ed8c 0x40872c74 0x069b069a 0x4086ed8c 0x4086b2ec 0x4086ed8c 0x4086b400 0x40871b4c
[17:06:48]4086b310: 0x00000007 0x00000000 0x40872c6c 0x42026ba4 0x40872c1c 0xffffffff 0x4086b3fc 0x00000020
[17:06:48]4086b330: 0x0000068e 0x4086ed8c 0x4086b4a0 0x4086ed8c 0x40872c7c 0x40872c1c 0x00000020 0x420271e6
[17:06:48]4086b350: 0x4086ed8c 0x40872c74 0x40872c7c 0x4086ed8c 0x40871b4c 0x00000007 0x4086b500 0xa5a5a5a5
[17:06:48]4086b370: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x40872c1c 0x4086ed8c
[17:06:48]4086b390: 0x40872c7c 0x4086ed8c 0x00000007 0x4086b500 0xa5a5a5a5 0xffffffff 0x4086b3fc 0x00000020
[17:06:48]4086b3b0: 0x0000068e 0x4086ed8c 0x4086b4a0 0x4086ed8c 0x40872c1c 0x0000068f 0x40872c14 0x42026f7e
[17:06:48]4086b3d0: 0x40871b4c 0x00000007 0x4086b500 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x40872bbc 0x4086ed8c
[17:06:48]4086b3f0: 0xa5a5a5a5 0x40872bc4 0x06850684 0x40872c7c 0x4086ed8c 0x40872c14 0x068f068e 0x4086ed8c
[17:06:48]4086b410: 0x4086b3fc 0x4086ed8c 0x4086b500 0x40871b4c 0x00000007 0x00000000 0x40872c0c 0x42026ba4
[17:06:48]
[17:06:48]
[17:06:48]
[17:06:48]ELF file SHA256: 46d4d2393
[17:06:48]
[17:06:48]Rebooting...
[17:06:48]ESP-ROM:esp32c6-20220919
[17:06:48]Build:Sep 19 2022
[17:06:48]rst:0xc (SW_CPU),boot:0xc (SPI_FAST_FLASH_BOOT)
[17:06:48]Saved PC:0x4001975a
[17:06:48]SPIWP:0xee
[17:06:48]mode:DIO, clock div:2
[17:06:48]load:0x40875720,len:0x1260
[17:06:48]load:0x4086c110,len:0xdc4
[17:06:48]load:0x4086e610,len:0x3018
[17:06:48]entry 0x4086c110
[17:06:49][     1][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:49][    12][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:49][    23][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:49][    35][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:49][    46][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:49][    57][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:49][    69][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:49][    80][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:49][    91][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:49][   103][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:49][   114][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:49][   125][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:49][   137][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DM (38) successfully set to 0x42062f22
[17:06:49][   148][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DP (39) successfully set to 0x42062f22
[17:06:49][   160][V][NetworkServer.h:41] NetworkServer(): NetworkServer::NetworkServer(port=23, ...)
[17:06:49][   168][V][ZigbeeEP.cpp:21] ZigbeeEP(): Endpoint: 1
[17:06:49][   216][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 17 successfully set to type UART_RX (2) with bus 0x4081bd68
[17:06:49][   226][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 16 successfully set to type UART_TX (3) with bus 0x4081bd68
[17:06:49][   237][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 12 successfully set to type USB_DM (38) with bus 0x40826df4
[17:06:49][   248][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 13 successfully set to type USB_DP (39) with bus 0x40826df4
[17:06:57]Guru Meditation Error: Core  0 panic'ed (Stack protection fault). 
[17:06:57]
[17:06:57]Detected in task "async_tcp" at 0x42025120
[17:06:57]Stack pointer: 0x40869b40
[17:06:57]Stack bounds: 0x40869b64 - 0x4086db60
[17:06:57]
[17:06:57]
[17:06:57]Core  0 register dump:
[17:06:57]MEPC    : 0x4202514a  RA      : 0x42026f2a  SP      : 0x40869b40  GP      : 0x40814c24  
[17:06:57]TP      : 0x4086db60  T0      : 0x40022494  T1      : 0xffffffe0  T2      : 0x33323130  
[17:06:57]S0/FP   : 0x40872920  S1      : 0x0000ffff  A0      : 0x40872978  A1      : 0x40869bb0  
[17:06:57]A2      : 0x4086d89c  A3      : 0x40869bbc  A4      : 0x40869bbc  A5      : 0x40869bbc  
[17:06:57]A6      : 0x0000000c  A7      : 0x0000003b  S2      : 0x4086d89c  S3      : 0x40872978  
[17:06:57]S4      : 0x40869c80  S5      : 0x40869bb0  S6      : 0x00000000  S7      : 0x00000020  
[17:06:57]S8      : 0x4084cde8  S9      : 0xffffffff  S10     : 0x40872928  S11     : 0x4086d89c  
[17:06:57]T3      : 0x6e6d6c6b  T4      : 0x6a696867  T5      : 0x66656463  T6      : 0x62613938  
[17:06:57]MSTATUS : 0x00001881  MTVEC   : 0x40800001  MCAUSE  : 0x0000001b  MTVAL   : 0x00005648  
[17:06:57]MHARTID : 0x00000000  
[17:06:57]
[17:06:57]Stack memory:
[17:06:58]40869b40: 0x00000000 0x80000000 0x004d0001 0x00000000 0x00000001 0xbaad5678 0x0000400c 0xabba1234
[17:06:58]40869b60: 0x00004000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5
[17:06:58]40869b80: 0xa5a5a5a5 0xffffffff 0x40869bdc 0x00000020 0x000006a8 0x4086d89c 0x40869c80 0x4086d89c
[17:06:58]40869ba0: 0x40872978 0x000006a9 0x40872920 0x42026f2a 0x4084cde8 0x00000004 0x40869d00 0xa5a5a5a5
[17:06:58]40869bc0: 0xa5a5a5a5 0xa5a5a5a5 0x40872918 0x4086d89c 0xa5a5a5a5 0x40872920 0x06a906a8 0xa5a5a5a5
[17:06:58]40869be0: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x4084cde8 0x00000004 0x40869d00 0x4084cde8
[17:06:58]40869c00: 0x00000004 0x00000000 0x40872968 0x42026ba4 0x40872918 0xffffffff 0x40869cec 0x00000020
[17:06:58]40869c20: 0x000006a6 0x4086d89c 0x40869d90 0x4086d89c 0x40872978 0x40872918 0x00000020 0x420271e6
[17:06:58]40869c40: 0x4086d89c 0x40872970 0x40872978 0x4086d89c 0x40871788 0x00000007 0x40869e00 0xa5a5a5a5
[17:06:58]40869c60: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x40872918 0x4086d89c
[17:06:58]40869c80: 0x40872978 0x4086d89c 0x00000007 0x40869e00 0xa5a5a5a5 0xffffffff 0x40869cec 0x00000020
[17:06:58]40869ca0: 0x000006a6 0x4086d89c 0x40869d90 0x4086d89c 0x40872918 0x000006a7 0x40872910 0x42026f7e
[17:06:58]40869cc0: 0x40871788 0x00000007 0x40869e00 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x408728b8 0x4086d89c
[17:06:58]40869ce0: 0xa5a5a5a5 0x408728c0 0x069d069c 0x40872978 0x4086d89c 0x40872910 0x06a706a6 0x4086d89c
[17:06:58]40869d00: 0x40869cec 0x4086d89c 0x40869e00 0x40871788 0x00000007 0x00000000 0x40872908 0x42026ba4
[17:06:58]40869d20: 0x408728b8 0xffffffff 0x40869dfc 0x00000020 0x0000069a 0x4086d89c 0x40869ea0 0x4086d89c
[17:06:58]40869d40: 0x40872918 0x408728b8 0x00000020 0x420271e6 0x4086d89c 0x40872910 0x40872918 0x4086d89c
[17:06:58]40869d60: 0x40871788 0x00000007 0x40869f00 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000
[17:06:58]40869d80: 0xffffffff 0xa5a5a5a5 0x408728b8 0x4086d89c 0x40872918 0x4086d89c 0x00000007 0x40869f00
[17:06:58]40869da0: 0xa5a5a5a5 0xffffffff 0x40869dfc 0x00000020 0x0000069a 0x4086d89c 0x40869ea0 0x4086d89c
[17:06:58]40869dc0: 0x408728b8 0x0000069b 0x408728b0 0x42026f7e 0x40871788 0x00000007 0x40869f00 0xa5a5a5a5
[17:06:58]40869de0: 0xa5a5a5a5 0xa5a5a5a5 0x40872858 0x4086d89c 0xa5a5a5a5 0x40872860 0x06910690 0x40872918
[17:06:58]40869e00: 0x4086d89c 0x408728b0 0x069b069a 0x4086d89c 0x40869dfc 0x4086d89c 0x40869f00 0x40871788
[17:06:58]40869e20: 0x00000007 0x00000000 0x408728a8 0x42026ba4 0x40872858 0xffffffff 0x40869f0c 0x00000020
[17:06:58]40869e40: 0x0000068e 0x4086d89c 0x40869fb0 0x4086d89c 0x408728b8 0x40872858 0x00000020 0x420271e6
[17:06:58]40869e60: 0x4086d89c 0x408728b0 0x408728b8 0x4086d89c 0x40871788 0x00000007 0x4086a000 0xa5a5a5a5
[17:06:58]40869e80: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x40872858 0x4086d89c
[17:06:58]40869ea0: 0x408728b8 0x4086d89c 0x00000007 0x4086a000 0xa5a5a5a5 0xffffffff 0x40869f0c 0x00000020
[17:06:58]40869ec0: 0x0000068e 0x4086d89c 0x40869fb0 0x4086d89c 0x40872858 0x0000068f 0x40872850 0x42026f7e
[17:06:58]40869ee0: 0x40871788 0x00000007 0x4086a000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x408727f8 0x4086d89c
[17:06:58]40869f00: 0xa5a5a5a5 0x40872800 0x06850684 0x408728b8 0x4086d89c 0x40872850 0x068f068e 0x4086d89c
[17:06:58]40869f20: 0x40869f0c 0x4086d89c 0x4086a000 0x40871788 0x00000007 0x00000000 0x40872848 0x42026ba4
[17:06:58]
[17:06:58]
[17:06:58]
[17:06:58]ELF file SHA256: 46d4d2393
[17:06:58]
[17:06:58]Rebooting...
[17:06:58]ESP-ROM:esp32c6-20220919
[17:06:58]Build:Sep 19 2022
[17:06:58]rst:0xc (SW_CPU),boot:0xc (SPI_FAST_FLASH_BOOT)
[17:06:58]Saved PC:0x4001975a
[17:06:58]SPIWP:0xee
[17:06:58]mode:DIO, clock div:2
[17:06:58]load:0x40875720,len:0x1260
[17:06:58]load:0x4086c110,len:0xdc4
[17:06:58]load:0x4086e610,len:0x3018
[17:06:58]entry 0x4086c110
[17:06:59][     1][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:59][    12][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:59][    23][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:59][    35][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:59][    46][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:59][    57][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:59][    69][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:59][    80][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:59][    91][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:06:59][   103][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:06:59][   114][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:06:59][   125][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:06:59][   137][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DM (38) successfully set to 0x42062f22
[17:06:59][   148][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DP (39) successfully set to 0x42062f22
[17:06:59][   160][V][NetworkServer.h:41] NetworkServer(): NetworkServer::NetworkServer(port=23, ...)
[17:06:59][   168][V][ZigbeeEP.cpp:21] ZigbeeEP(): Endpoint: 1
[17:06:59][   217][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 17 successfully set to type UART_RX (2) with bus 0x4081bd68
[17:06:59][   228][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 16 successfully set to type UART_TX (3) with bus 0x4081bd68
[17:06:59][   239][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 12 successfully set to type USB_DM (38) with bus 0x40826df4
[17:06:59][   250][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 13 successfully set to type USB_DP (39) with bus 0x40826df4
[17:07:07]Guru Meditation Error: Core  0 panic'ed (Stack protection fault). 
[17:07:07]
[17:07:07]Detected in task "async_tcp" at 0x42025120
[17:07:07]Stack pointer: 0x408695a0
[17:07:07]Stack bounds: 0x408695cc - 0x4086d5c0
[17:07:07]
[17:07:07]
[17:07:07]Core  0 register dump:
[17:07:07]MEPC    : 0x42025140  RA      : 0x42026f2a  SP      : 0x408695a0  GP      : 0x40814c24  
[17:07:07]TP      : 0x4086d5c0  T0      : 0x40022494  T1      : 0xffffffe0  T2      : 0x33323130  
[17:07:07]S0/FP   : 0x4087293c  S1      : 0x000006a9  A0      : 0x40872994  A1      : 0x40869610  
[17:07:07]A2      : 0x4086d2fc  A3      : 0x4086961c  A4      : 0x4086961c  A5      : 0x4086961c  
[17:07:07]A6      : 0x0000000c  A7      : 0x0000003b  S2      : 0x4086d2fc  S3      : 0x40872994  
[17:07:07]S4      : 0x408696e0  S5      : 0x40869610  S6      : 0x000006a8  S7      : 0x00000020  
[17:07:08]S8      : 0x4085a9f0  S9      : 0xffffffff  S10     : 0x40872944  S11     : 0x4086d2fc  
[17:07:08]T3      : 0x6e6d6c6b  T4      : 0x6a696867  T5      : 0x66656463  T6      : 0x62613938  
[17:07:08]MSTATUS : 0x00001881  MTVEC   : 0x40800001  MCAUSE  : 0x0000001b  MTVAL   : 0x00004b01  
[17:07:08]MHARTID : 0x00000000  
[17:07:08]
[17:07:08]Stack memory:
[17:07:08]408695a0: 0x00000000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xbaad5678
[17:07:08]408695c0: 0x0000400c 0xabba1234 0x00004000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5
[17:07:08]408695e0: 0xa5a5a5a5 0xffffffff 0x4086963c 0x00000020 0x000006a8 0x4086d2fc 0x408696e0 0x4086d2fc
[17:07:08]40869600: 0x40872994 0x000006a9 0x4087293c 0x42026f2a 0x4085a9f0 0x00000004 0x40869700 0xa5a5a5a5
[17:07:08]40869620: 0xa5a5a5a5 0xa5a5a5a5 0x40872934 0x4086d2fc 0xa5a5a5a5 0x4087293c 0x06a906a8 0xa5a5a5a5
[17:07:08]40869640: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x4085a9f0 0x00000004 0x40869700 0x4085a9f0
[17:07:08]40869660: 0x00000004 0x00000000 0x40872984 0x42026ba4 0x40872934 0xffffffff 0x4086974c 0x00000020
[17:07:08]40869680: 0x000006a6 0x4086d2fc 0x408697f0 0x4086d2fc 0x40872994 0x40872934 0x00000020 0x420271e6
[17:07:08]408696a0: 0x4086d2fc 0x4087298c 0x40872994 0x4086d2fc 0x408717a4 0x00000007 0x40869900 0xa5a5a5a5
[17:07:08]408696c0: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x40872934 0x4086d2fc
[17:07:08]408696e0: 0x40872994 0x4086d2fc 0x00000007 0x40869900 0xa5a5a5a5 0xffffffff 0x4086974c 0x00000020
[17:07:08]40869700: 0x000006a6 0x4086d2fc 0x408697f0 0x4086d2fc 0x40872934 0x000006a7 0x4087292c 0x42026f7e
[17:07:08]40869720: 0x408717a4 0x00000007 0x40869900 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x408728d4 0x4086d2fc
[17:07:08]40869740: 0xa5a5a5a5 0x408728dc 0x069d069c 0x40872994 0x4086d2fc 0x4087292c 0x06a706a6 0x4086d2fc
[17:07:08]40869760: 0x4086974c 0x4086d2fc 0x40869900 0x408717a4 0x00000007 0x00000000 0x40872924 0x42026ba4
[17:07:08]40869780: 0x408728d4 0xffffffff 0x4086985c 0x00000020 0x0000069a 0x4086d2fc 0x40869900 0x4086d2fc
[17:07:08]408697a0: 0x40872934 0x408728d4 0x00000020 0x420271e6 0x4086d2fc 0x4087292c 0x40872934 0x4086d2fc
[17:07:08]408697c0: 0x408717a4 0x00000007 0x00000000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000
[17:07:08]408697e0: 0xffffffff 0xa5a5a5a5 0x408728d4 0x4086d2fc 0x40872934 0x4086d2fc 0x00000007 0x00000000
[17:07:08]40869800: 0xa5a5a5a5 0xffffffff 0x4086985c 0x00000020 0x0000069a 0x4086d2fc 0x40869900 0x4086d2fc
[17:07:08]40869820: 0x408728d4 0x0000069b 0x408728cc 0x42026f7e 0x408717a4 0x00000007 0x00000000 0xa5a5a5a5
[17:07:08]40869840: 0x42024394 0x42024388 0x40872874 0x4086d2fc 0x4086d5c0 0x4087287c 0x06910690 0x40872934
[17:07:08]40869860: 0x4086d2fc 0x408728cc 0x069b069a 0x4086d2fc 0x4086985c 0x4086d2fc 0x00000000 0x408717a4
[17:07:08]40869880: 0x00000007 0x00000000 0x4086d2fc 0x40872874 0x40872874 0xffffffff 0x4086996c 0x00000020
[17:07:08]408698a0: 0x0000068e 0x4086d2fc 0x40869a10 0x4086d2fc 0x408728d4 0x40872874 0x00000020 0x420271e6
[17:07:08]408698c0: 0x4086d2fc 0x408728cc 0x408728d4 0x4086d2fc 0x408717a4 0x00000007 0x40869b00 0xa5a5a5a5
[17:07:08]408698e0: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x40872874 0x4086d2fc
[17:07:08]40869900: 0x408728d4 0x4086d2fc 0x00000007 0x40869b00 0xa5a5a5a5 0xffffffff 0x4086996c 0x00000020
[17:07:08]40869920: 0x0000068e 0x4086d2fc 0x40869a10 0x4086d2fc 0x40872874 0x0000068f 0x4087286c 0x42026f7e
[17:07:08]40869940: 0x408717a4 0x00000007 0x40869b00 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x40872814 0x4086d2fc
[17:07:08]40869960: 0xa5a5a5a5 0x4087281c 0x06850684 0x408728d4 0x4086d2fc 0x4087286c 0x068f068e 0x4086d2fc
[17:07:08]40869980: 0x4086996c 0x4086d2fc 0x40869b00 0x408717a4 0x00000007 0x00000000 0x40872864 0x42026ba4
[17:07:08]
[17:07:08]
[17:07:08]
[17:07:08]ELF file SHA256: 46d4d2393
[17:07:08]
[17:07:08]Rebooting...
[17:07:08]ESP-ROM:esp32c6-20220919
[17:07:08]Build:Sep 19 2022
[17:07:08]rst:0xc (SW_CPU),boot:0xc (SPI_FAST_FLASH_BOOT)
[17:07:08]Saved PC:0x4001975a
[17:07:08]SPIWP:0xee
[17:07:08]mode:DIO, clock div:2
[17:07:08]load:0x40875720,len:0x1260
[17:07:08]load:0x4086c110,len:0xdc4
[17:07:08]load:0x4086e610,len:0x3018
[17:07:08]entry 0x4086c110
[17:07:09][     1][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:07:09][    12][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:07:09][    23][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:07:09][    35][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:07:09][    46][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:07:09][    57][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:07:09][    69][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:07:09][    80][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:07:09][    91][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:07:09][   103][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:07:09][   114][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:07:09][   125][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:07:09][   137][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DM (38) successfully set to 0x42062f22
[17:07:09][   148][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DP (39) successfully set to 0x42062f22
[17:07:09][   160][V][NetworkServer.h:41] NetworkServer(): NetworkServer::NetworkServer(port=23, ...)
[17:07:09][   168][V][ZigbeeEP.cpp:21] ZigbeeEP(): Endpoint: 1
[17:07:09][   217][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 17 successfully set to type UART_RX (2) with bus 0x4081bd68
[17:07:09][   228][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 16 successfully set to type UART_TX (3) with bus 0x4081bd68
[17:07:09][   238][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 12 successfully set to type USB_DM (38) with bus 0x40826df4
[17:07:09][   249][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 13 successfully set to type USB_DP (39) with bus 0x40826df4
[17:07:22]Guru Meditation Error: Core  0 panic'ed (Stack protection fault). 
[17:07:22]
[17:07:22]Detected in task "async_tcp" at 0x42025120
[17:07:22]Stack pointer: 0x40869640
[17:07:22]Stack bounds: 0x40869668 - 0x4086d660
[17:07:22]
[17:07:22]
[17:07:22]Core  0 register dump:
[17:07:22]MEPC    : 0x4202514a  RA      : 0x42026f2a  SP      : 0x40869640  GP      : 0x40814c24  
[17:07:22]TP      : 0x4086d660  T0      : 0x40022494  T1      : 0xffffffe0  T2      : 0x33323130  
[17:07:22]S0/FP   : 0x408729b4  S1      : 0x0000ffff  A0      : 0x40872a0c  A1      : 0x408696b0  
[17:07:22]A2      : 0x4086d39c  A3      : 0x408696bc  A4      : 0x408696bc  A5      : 0x408696bc  
[17:07:23]A6      : 0x0000000c  A7      : 0x0000003b  S2      : 0x4086d39c  S3      : 0x40872a0c  
[17:07:23]S4      : 0x40869780  S5      : 0x408696b0  S6      : 0x00000000  S7      : 0x00000020  
[17:07:23]S8      : 0x408337a8  S9      : 0xffffffff  S10     : 0x408729bc  S11     : 0x4086d39c  
[17:07:23]T3      : 0x6e6d6c6b  T4      : 0x6a696867  T5      : 0x66656463  T6      : 0x62613938  
[17:07:23]MSTATUS : 0x00001881  MTVEC   : 0x40800001  MCAUSE  : 0x0000001b  MTVAL   : 0x00005648  
[17:07:23]MHARTID : 0x00000000  
[17:07:23]
[17:07:23]Stack memory:
[17:07:23]40869640: 0x00000000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xbaad5678 0x0000400c
[17:07:23]40869660: 0xabba1234 0x00004000 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5
[17:07:23]40869680: 0xa5a5a5a5 0xffffffff 0x408696dc 0x00000020 0x000006a8 0x4086d39c 0x40869780 0x4086d39c
[17:07:23]408696a0: 0x40872a0c 0x000006a9 0x408729b4 0x42026f2a 0x408337a8 0x00000004 0x40869800 0xa5a5a5a5
[17:07:23]408696c0: 0xa5a5a5a5 0xa5a5a5a5 0x408729ac 0x4086d39c 0xa5a5a5a5 0x408729b4 0x06a906a8 0xa5a5a5a5
[17:07:23]408696e0: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x408337a8 0x00000004 0x40869800 0x408337a8
[17:07:23]40869700: 0x00000004 0x00000000 0x408729fc 0x42026ba4 0x408729ac 0xffffffff 0x408697ec 0x00000020
[17:07:23]40869720: 0x000006a6 0x4086d39c 0x40869890 0x4086d39c 0x40872a0c 0x408729ac 0x00000020 0x420271e6
[17:07:23]40869740: 0x4086d39c 0x40872a04 0x40872a0c 0x4086d39c 0x4087181c 0x00000007 0x40869900 0xa5a5a5a5
[17:07:23]40869760: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x408729ac 0x4086d39c
[17:07:23]40869780: 0x40872a0c 0x4086d39c 0x00000007 0x40869900 0xa5a5a5a5 0xffffffff 0x408697ec 0x00000020
[17:07:23]408697a0: 0x000006a6 0x4086d39c 0x40869890 0x4086d39c 0x408729ac 0x000006a7 0x408729a4 0x42026f7e
[17:07:23]408697c0: 0x4087181c 0x00000007 0x40869900 0x40814c24 0x4086d660 0x40022494 0x4087294c 0x4086d39c
[17:07:23]408697e0: 0x00000004 0x40872954 0x069d069c 0x40872a0c 0x4086d39c 0x408729a4 0x06a706a6 0x4086d39c
[17:07:23]40869800: 0x408697ec 0x4086d39c 0x40869900 0x4087181c 0x00000007 0x00000000 0x4087299c 0x42026ba4
[17:07:23]40869820: 0x4087294c 0xffffffff 0x408698fc 0x00000020 0x0000069a 0x4086d39c 0x408699a0 0x4086d39c
[17:07:23]40869840: 0x408729ac 0x4087294c 0x00000020 0x420271e6 0x4086d39c 0x408729a4 0x408729ac 0x4086d39c
[17:07:23]40869860: 0x4087181c 0x00000007 0x40869a00 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000
[17:07:23]40869880: 0xffffffff 0xa5a5a5a5 0x4087294c 0x4086d39c 0x408729ac 0x4086d39c 0x00000007 0x40869a00
[17:07:23]408698a0: 0xa5a5a5a5 0xffffffff 0x408698fc 0x00000020 0x0000069a 0x4086d39c 0x408699a0 0x4086d39c
[17:07:23]408698c0: 0x4087294c 0x0000069b 0x40872944 0x42026f7e 0x4087181c 0x00000007 0x40869a00 0xa5a5a5a5
[17:07:23]408698e0: 0xa5a5a5a5 0xa5a5a5a5 0x408728ec 0x4086d39c 0xa5a5a5a5 0x408728f4 0x06910690 0x408729ac
[17:07:23]40869900: 0x4086d39c 0x40872944 0x069b069a 0x4086d39c 0x408698fc 0x4086d39c 0x40869a00 0x4087181c
[17:07:23]40869920: 0x00000007 0x00000000 0x4087293c 0x42026ba4 0x408728ec 0xffffffff 0x40869a0c 0x00000020
[17:07:23]40869940: 0x0000068e 0x4086d39c 0x40869ab0 0x4086d39c 0x4087294c 0x408728ec 0x00000020 0x420271e6
[17:07:23]40869960: 0x4086d39c 0x40872944 0x4087294c 0x4086d39c 0x4087181c 0x00000007 0x40869b00 0xa5a5a5a5
[17:07:23]40869980: 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x00000000 0xffffffff 0xa5a5a5a5 0x408728ec 0x4086d39c
[17:07:23]408699a0: 0x4087294c 0x4086d39c 0x00000007 0x40869b00 0xa5a5a5a5 0xffffffff 0x40869a0c 0x00000020
[17:07:23]408699c0: 0x0000068e 0x4086d39c 0x40869ab0 0x4086d39c 0x408728ec 0x0000068f 0x408728e4 0x42026f7e
[17:07:23]408699e0: 0x4087181c 0x00000007 0x40869b00 0xa5a5a5a5 0xa5a5a5a5 0xa5a5a5a5 0x4087288c 0x4086d39c
[17:07:23]40869a00: 0xa5a5a5a5 0x40872894 0x06850684 0x4087294c 0x4086d39c 0x408728e4 0x068f068e 0x4086d39c
[17:07:23]40869a20: 0x40869a0c 0x4086d39c 0x40869b00 0x4087181c 0x00000007 0x00000000 0x408728dc 0x42026ba4
[17:07:23]
[17:07:23]
[17:07:23]
[17:07:23]ELF file SHA256: 46d4d2393
[17:07:23]
[17:07:23]Rebooting...
[17:07:23]ESP-ROM:esp32c6-20220919
[17:07:23]Build:Sep 19 2022
[17:07:23]rst:0xc (SW_CPU),boot:0xc (SPI_FAST_FLASH_BOOT)
[17:07:23]Saved PC:0x4001975a
[17:07:23]SPIWP:0xee
[17:07:23]mode:DIO, clock div:2
[17:07:23]load:0x40875720,len:0x1260
[17:07:23]load:0x4086c110,len:0xdc4
[17:07:23]load:0x4086e610,len:0x3018
[17:07:23]entry 0x4086c110
[17:07:24][     1][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:07:24][    12][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:07:24][    23][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:07:24][    35][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:07:24][    46][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:07:24][    57][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:07:24][    69][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:07:24][    80][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:07:24][    91][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RX (2) successfully set to 0x4206a334
[17:07:24][   103][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_TX (3) successfully set to 0x4206a322
[17:07:24][   114][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_CTS (4) successfully set to 0x4206a310
[17:07:24][   125][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type UART_RTS (5) successfully set to 0x4206a2fe
[17:07:24][   137][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DM (38) successfully set to 0x42062f22
[17:07:24][   148][V][esp32-hal-periman.c:235] perimanSetBusDeinit(): Deinit function for type USB_DP (39) successfully set to 0x42062f22
[17:07:24][   160][V][NetworkServer.h:41] NetworkServer(): NetworkServer::NetworkServer(port=23, ...)
[17:07:24][   168][V][ZigbeeEP.cpp:21] ZigbeeEP(): Endpoint: 1
[17:07:24][   215][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 17 successfully set to type UART_RX (2) with bus 0x4081bd68
[17:07:24][   226][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 16 successfully set to type UART_TX (3) with bus 0x4081bd68
[17:07:24][   237][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 12 successfully set to type USB_DM (38) with bus 0x40826df4
[17:07:24][   247][V][esp32-hal-periman.c:160] perimanSetPinBus(): Pin 13 successfully set to type USB_DP (39) with bus 0x40826df4
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

bokk wrote: Thu Jun 26, 2025 3:08 pm

Code: Select all

Using 'COM8' as serial port....
Soft merged czy update/OTA?
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277

Return to “Bramka ZigBee”