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

arm64 fixes #755

Merged
merged 3 commits into from
Sep 2, 2024
Merged

arm64 fixes #755

merged 3 commits into from
Sep 2, 2024

Commits on Sep 2, 2024

  1. pwm_esc: Use PX4_STACK_ADJUSTED() for stack size

    The module occasionally runs out of stack otherwise
    pussuw committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    fe7d3b2 View commit details
    Browse the repository at this point in the history
  2. board_ioctl.c: Fix return values, check incoming parameter

    - Return value should be negated errno ok OK (not PX4_OK)
    - Check that the incoming argument is valid (not NULL)
    pussuw committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    802d555 View commit details
    Browse the repository at this point in the history
  3. hrt_ioctl.c: Cast NULL (which is defined as (void *)0) to integer

    The value is returned as integer, some compilers are not happy we assign
    a pointer to void.
    pussuw committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    828d95a View commit details
    Browse the repository at this point in the history