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

feat: support stm32 assert #2384

Merged
merged 2 commits into from
May 28, 2024
Merged

feat: support stm32 assert #2384

merged 2 commits into from
May 28, 2024

Commits on May 28, 2024

  1. feat: support stm32 assert

    Fixes stm32duino#2375.
    
    Signed-off-by: Frederic Pillon <[email protected]>
    fpistm committed May 28, 2024
    Configuration menu
    Copy the full SHA
    000dad7 View commit details
    Browse the repository at this point in the history
  2. fix: prevent unused warning

    When NDEBUG is defined and the _Error_Handler() is used
    inside a function using function arguments.
    
    Ex:
    void dummy(char *file, uint32_t line) {
      _Error_Handler(file, line);
    }
    
    Signed-off-by: Frederic Pillon <[email protected]>
    fpistm committed May 28, 2024
    Configuration menu
    Copy the full SHA
    5388978 View commit details
    Browse the repository at this point in the history