Search found 606 matches

by fly135
Mon Mar 26, 2018 4:34 pm
Forum: General Discussion
Topic: Simple Wifi example failure
Replies: 3
Views: 7187

Re: Simple Wifi example failure

Is this in your code somewhere?

wifi_event_group = xEventGroupCreate();
by fly135
Mon Mar 26, 2018 4:25 pm
Forum: General Discussion
Topic: I need to read input from the user console
Replies: 14
Views: 27439

Re: I need to read input from the user console

I actually use tera term plus for my terminal. I imagine that msys32 would work fine too. You basically have a CLI that works interleaved with all the debug logging and prints that are in your app.

Look in .../examples/system/console for help figuring it out.

John A
by fly135
Sat Mar 24, 2018 3:59 pm
Forum: General Discussion
Topic: Custom partition table make slow boot
Replies: 13
Views: 14239

Re: Custom partition table make slow boot

Can you create a fat file system in a 1M partition and save your data there instead? Then you won't get the last delay on boot.

John A
by fly135
Thu Mar 22, 2018 8:31 pm
Forum: General Discussion
Topic: Custom partition table make slow boot
Replies: 13
Views: 14239

Re: Custom partition table make slow boot

Did you notice this line in the partition file? "# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild" I guess they mean the "defaults" in ...components/partition/Kconfig.projbuild. But if you ran make menuconfig and assigned the correct val...
by fly135
Thu Mar 22, 2018 6:50 pm
Forum: General Discussion
Topic: SK6812 RGBW LEDs flickering - RMT Driver
Replies: 10
Views: 15416

Re: SK6812 RGBW LEDs flickering - RMT Driver

What's your debug logging level? I had issues with neopixel leds not working right when I had RMT logging printing on the terminal.

John A
by fly135
Thu Mar 22, 2018 6:48 pm
Forum: General Discussion
Topic: ESP-WROVER-KIT will not reset
Replies: 9
Views: 12798

Re: ESP-WROVER-KIT will not reset

Just tried pressing the EN button on my ESP-WROVER-KIT and it caused a reboot.

John A
by fly135
Tue Mar 20, 2018 10:04 pm
Forum: General Discussion
Topic: Any hints for getting more task memory
Replies: 3
Views: 4438

Re: Any hints for getting more task memory

Since BLE is only for configuring the device, I'm thinking that on boot if it's not configured then go into BLE mode. If is configured then go to normal mode. So I could avoid any BLE dynamic allocation in normal mode. But there might still be some static since it's linked.

John A
by fly135
Tue Mar 20, 2018 9:59 pm
Forum: General Discussion
Topic: Any hints for getting more task memory
Replies: 3
Views: 4438

Re: Any hints for getting more task memory

Yep, did all that. We are going to get SPIRAM, like is on the WROVER. Is that 32bit only? I'm under the impression that it is. Although if it caches in 8bit, then it wouldn't be? So maybe I can do 16 bit access on it. But not tasks?

John
by fly135
Tue Mar 20, 2018 8:32 pm
Forum: General Discussion
Topic: Any hints for getting more task memory
Replies: 3
Views: 4438

Any hints for getting more task memory

I'm running out of MALLOC_CAP_8BIT bit memory. I've been going through my app and trying to free up as much as I can. Reducing stack size where I can. Getting rid of .bss declared arrays and doing a dynamically alloc/free instead. Even to the point of allocating 32 bit and breaking it into 8 or 16 b...