Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix DEBUG macros #5728

Merged
merged 5 commits into from
Mar 14, 2019
Merged

fix DEBUG macros #5728

merged 5 commits into from
Mar 14, 2019

Conversation

d-a-v
Copy link
Collaborator

@d-a-v d-a-v commented Feb 6, 2019

All fmt strings in flash
fix #5658

This also allows to avoid warnings and easy mistakes with (no brace):

    if (something)
        DEBUGV("blah");

edit
use newlib unaligned-compatible printf for DEBUGV
fix #5855

All fmt strings in flash
fix esp8266#5658

This also allows to avoid warnings and easy mistakes with (no brace):
    if (something)
        DEBUGV("blah");
@d-a-v d-a-v requested a review from earlephilhower February 8, 2019 11:39
Copy link
Collaborator

@earlephilhower earlephilhower left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine with the one comment about DEBUGV.

@@ -5,11 +5,11 @@
#include <stdint.h>

#ifdef DEBUG_ESP_CORE
#define DEBUGV(...) ets_printf(__VA_ARGS__)
#define DEBUGV(fmt, ...) ::printf_P( (PGM_P)PSTR(fmt), ## __VA_ARGS__)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this not be the same as others (i.e. DEBUG_ESP_PORT.printf(...)?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ets_printf is safe to call in any context (such as system), but DEBUG_ESP_PORT.printf could yield, which would not work in sys context?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I changed to ::printf_P so we can use fmt arguments from flash.
I assume ::printf_P uses putchar installed by ets_install_putc1/putc2 in debug mode like, ets_printf does.
(should the others use ::printf_P instead of Serial.printf_P ?)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@igrr Were you suggesting to remove (legacy) DEBUG_ESP_PORT.printf and use DEBUGV instead ?
About sys context, I believe new newlib's ::vsnprintf() and fw's ets_putc() are safe (no yield).

@d-a-v
Copy link
Collaborator Author

d-a-v commented Mar 13, 2019

use newlib unaligned-compatible printf for DEBUGV
fix #5855

@d-a-v d-a-v requested a review from earlephilhower March 13, 2019 01:29
@igrr
Copy link
Member

igrr commented Mar 13, 2019 via email

@d-a-v d-a-v merged commit e5b4de3 into esp8266:master Mar 14, 2019
@d-a-v d-a-v deleted the DEBUG branch March 14, 2019 10:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

OTA crash with UDP server and CORE debug Reminder: rework all debug directives
3 participants