Results 18 comments of m1nl

> I've managed to decompile upgrade app and found header definition: > ``` > |41 54 4B 2D 50 54 54 38 30 50 00 00 00 00 00 00|...

this packet is not drone id, it's sent by drone when it's stationary and not connected to RC; ZC seqs are 186, 186, 600, 600 (symbols in the middle); CPs...

I have collected DroneID from ocusync 3.0; same frame format as before, but encrypted.

frame format is the same, in my case first symbol is missing (the one which is zeroed when descrambled); CRC check passes and I'm unable to decode the content; checks...

AFAIK dynamic light-sleep in ESP32 platform makes the chip light-sleep when FreeRTOS waits for an event or there is an explicit vTaskDelay call (=~ sleep in Arduino). So most of...

If there is a chance to have this feature merged, I'd appreciate getting some feedback on the additional repos to be hosted under `meshtastic` Github organization. As mentioned above, default...

@fifieldt changes committed; device should not go into light-sleep when GPS position is requested (=module is in GPS_ACTIVE state). I'm unable to test as I'm on vacation right now.

hi, 1) Bumping my last question I'd appreciate getting some feedback on hosting additional repos under meshtastic Github organization. Default Arduino framework provided by Espressif doesn't enable PM functionality at...

> ``` > /work/.platformio/packages/toolchain-xtensa-esp32/bin/../lib/gcc/xtensa-esp32-elf/8.4.0/../../../../xtensa-esp32-elf/bin/ld: .pio/build/heltec-v2_1/firmware.elf section `.iram0.text' will not fit in region `iram0_0_seg' > /work/.platformio/packages/toolchain-xtensa-esp32/bin/../lib/gcc/xtensa-esp32-elf/8.4.0/../../../../xtensa-esp32-elf/bin/ld: IRAM0 segment data does not fit. > /work/.platformio/packages/toolchain-xtensa-esp32/bin/../lib/gcc/xtensa-esp32-elf/8.4.0/../../../../xtensa-esp32-elf/bin/ld: region `iram0_0_seg' overflowed by 776 bytes >...

> General critique about having a lot of `assert(res == ESP_OK);`: > > While I've already make a boot loop with those asserts because of a wrong setting, the more...