Search found 296 matches

by urbanze
Thu Aug 13, 2020 2:06 pm
Forum: General Discussion
Topic: eFuse factory already wrote
Replies: 3
Views: 3890

Re: eFuse factory already wrote

any one can help me to understand this situation?
by urbanze
Thu Jul 16, 2020 10:53 pm
Forum: General Discussion
Topic: WiFi STA fail to connect in enterprise AP.
Replies: 2
Views: 3376

Re: WiFi STA fail to connect in enterprise AP.

Any ideia? This make no sense to me. I've seen other reports of this type and I think the problem is in enterprise WiFi, but how to solve it? What can I do?
by urbanze
Wed Jul 15, 2020 4:53 pm
Forum: General Discussion
Topic: WiFi STA fail to connect in enterprise AP.
Replies: 2
Views: 3376

WiFi STA fail to connect in enterprise AP.

Hello guys, I need some help with "enterprise" WiFis. With my home wifi or mobile AP (hosted from galaxy s8), esp32 always can connect correctly and get dhcp ip. However, here in my job (enterprise wifi), esp32 fail to connect OR fail to get DHCP or connect sucessfully. (random) Please, help me to f...
by urbanze
Sat Jun 06, 2020 6:55 pm
Forum: General Discussion
Topic: Bootloader timestamp
Replies: 0
Views: 1634

Bootloader timestamp

Timestamp used by bootloader and 2nd bootloader is CPU cycle counter and after scheduler are RTOS tick, OK. However, I tried to find time that RTC WDT is enabled and found one curious detail: Timestamp go back (rollback) before RTC WDT, why? Line with "chip revision" = 89 cycles Line with "bootloade...
by urbanze
Mon May 04, 2020 11:28 am
Forum: Hardware
Topic: How many write/erase cycle on flash??
Replies: 4
Views: 11047

Re: How many write/erase cycle on flash??

WiFive wrote:
Fri May 01, 2020 8:32 am
Yes wear leveling helps and you only erase when you run out of space not on every write
How many writes one simple nvs partition (4KB) with default wear leveling (4K) can do approximately? I need numbers and how to math this?!

[4K*4K*100K(flash write cycle)]/data_write_size(1B) = 1.6M writes ??
by urbanze
Tue Mar 17, 2020 11:10 am
Forum: General Discussion
Topic: Can the WDT be routed to a GPIO pin
Replies: 2
Views: 3798

Re: Can the WDT be routed to a GPIO pin

As most of us know when you starve the CPU core your going to get a WDT warning in the terminal. I am curious if there is some kind of ISR hook or other call that can be implemented in code so that if it gets triggered I can toggle a GPIO pin. Task wdt has weak handler and yes, you can do this. esp...
by urbanze
Fri Jan 31, 2020 11:42 pm
Forum: General Discussion
Topic: eFuse factory already wrote
Replies: 3
Views: 3890

Re: eFuse factory already wrote

Obviously, that shouldn't happen. Is this consistent across readouts? This only happens with one module/chip, right? What is the MAC number? Yes, all eFuse read are the same value. Yes, I noticed this behaviour only one time in my life with esp32. Summary above has MAC (MAC Factory MAC Address = 3c...
by urbanze
Thu Jan 30, 2020 3:49 pm
Forum: General Discussion
Topic: eFuse factory already wrote
Replies: 3
Views: 3890

eFuse factory already wrote

Hello! I want to know about de chances of eFuses become burned from de factory :lol: In this week, I'm uploading all boards from my job and in process to burn flash key, tool tell's about already value in keys. See, Flash key and Block 3 has 0xFF bytes wrote, and I never get, in my hands, this esp32...
by urbanze
Thu Nov 21, 2019 7:44 pm
Forum: General Discussion
Topic: C library linkage fail in C++
Replies: 7
Views: 9252

Re: C library linkage fail in C++

It looks like maybe your main component.mk doesn't add the "tinyexpr" subdirectory to COMPONENT_SRCDIRS? This means the tinyexpr.c file is never compiled as part of the build. The hack where you #include "tinyexpr/tinyexpr.c" main.c works, because now the files are compiled as part of main.c. Check...
by urbanze
Thu Nov 21, 2019 1:42 pm
Forum: General Discussion
Topic: Approximate reasonably CPU load per core?
Replies: 6
Views: 7542

Re: Approximate reasonably CPU load per core?

Folks, Is there an "official" way to read the approximate CPU load e.g. how much time is spent in IDLE vs other tasks? I'd ideally need this per core, tips on how to achieve that would be appreciated. Thanks With RTOS stats, you can see task usage of all tasks of both cpus (including IDLEs) https:/...