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

Add %z and %x to printf backend #5424

Merged
merged 4 commits into from
Dec 3, 2018
Merged

Commits on Dec 3, 2018

  1. Add %z and %x to printf backend

    %z is a C99 format used for size_t and was not included in any printf.
    On the 8266 it's a no-op as size_t==int, so ignore it and things just
    work.
    
    %x lowercase support added back in (wasn't present in nano-printf).
    earlephilhower committed Dec 3, 2018
    Configuration menu
    Copy the full SHA
    7058d6f View commit details
    Browse the repository at this point in the history
  2. Update to toolchain built newlib, fix link error

    Previous commit was a hand build and copy, this one used the full
    toolchain and should not include atexit().
    earlephilhower committed Dec 3, 2018
    Configuration menu
    Copy the full SHA
    9a7053b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    18fcd4d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c25e7cb View commit details
    Browse the repository at this point in the history