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

Improvement for 64bit Windows port #1011

Merged
merged 3 commits into from
Mar 18, 2024
Merged

Commits on Mar 9, 2024

  1. 64bit TickType_t is supported on Windows port.(MSVC and MinGW)

    Especially it is introduced for 64bit compiler.(x64 platform on MSVC and MinGW-w64)
    watsk committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    cddeaf1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    04c3fcb View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2024

  1. Modify the condition for ignoring compiler warning for the cast opera…

    …tion.
    
    Before modification: Compiler warning was ignored only on MinGW64
    After modification: Compiler warning is ignored on MinGW32 and MinGW64
    Reason of modification: The cast warning here is unavoidable not only on MinGW64 but also on MinGW32.
    "__GNUC__" macro is used because MSVC does not recognize this #pragma directive.
    watsk committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    cb85579 View commit details
    Browse the repository at this point in the history