Search found 3 matches

by solexious
Mon Oct 05, 2020 12:57 am
Forum: General Discussion
Topic: using F() with log_d() ?
Replies: 0
Views: 2156

using F() with log_d() ?

Heya, I've just changed all my logging from using Serial.print on the esp32 with arduino framework, to using log_d log_e etc to be able to set logging levels. But, I've noticed that doing this has bumped my ram usage by ~6%, it looks to me that its from the strings made by using log_d("This is a deb...
by solexious
Mon Oct 05, 2020 12:34 am
Forum: General Discussion
Topic: Ticker vs tasks
Replies: 2
Views: 2684

Re: Ticker vs tasks

Ah great, that was what I was thinking by the end of searching about it.

Thanks very much for the clarification!
by solexious
Thu Oct 01, 2020 4:03 pm
Forum: General Discussion
Topic: Ticker vs tasks
Replies: 2
Views: 2684

Ticker vs tasks

I'm trying to work out the "best" thing to use between timers and tasks. I want to call a function every 60 seconds, this will do some updates to a tft screen plugged into my esp32. This update performs some i2c calls and then spits out updates to the screen over spi. I just learned about tasks and ...