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 a few minor issues #344

Merged
merged 3 commits into from
Dec 19, 2023
Merged

Fix a few minor issues #344

merged 3 commits into from
Dec 19, 2023

Commits on Dec 19, 2023

  1. was: cleanup after processing wake_result

    This skips multiple unneeded cJSON calls.
    stintel committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    6ee23ce View commit details
    Browse the repository at this point in the history
  2. main: use correct format specifiers for uint32_t

    Fixes clang-tidy warnings like these:
    
    /willow/main/system.c:89:51: error: format specifies type 'unsigned long' but the argument has type 'uint32_t' (aka 'unsigned int') [clang-diagnostic-format]
        ESP_LOGI(TAG, "restarting after %lu seconds", delay);
                                        ~~~           ^
                                        %u
    
    Reported-by: clang-tidy
    stintel committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    a881d65 View commit details
    Browse the repository at this point in the history
  3. log: drop PERIPH_WIFI

    Fixes: eb812b4 ("network: nuke periph_wifi")
    stintel committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    ad173db View commit details
    Browse the repository at this point in the history