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

Fixed Serial_::begin(..) definition to match arduino::HardwareSerial #672

Merged
merged 1 commit into from
Jun 8, 2022

Commits on Jun 8, 2022

  1. Fixed Serial_::begin(..) definition to match arduino::HardwareSerial

    This is usually not a problem becuase we use the arm-none-eabi-gcc compiler
    thas has type `uint32_t` aliased to `unsigned long`. Anyway this is not
    mandatory in general, and the compiler may choose to alias `uint32_t` with
    `unsigned int` as it happens with llvm/clang.
    
    Since we use clangd as language server on the Arduino IDE 2.0 the
    Serial_ object and all the derived instances (Serial, SerialUSB, ...) are
    not available in code-completion suggestions.
    cmaglie committed Jun 8, 2022
    Configuration menu
    Copy the full SHA
    9defb31 View commit details
    Browse the repository at this point in the history