Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: raspberrypi/pico-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: raspberrypi/pico-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: iar/develop
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 51 files changed
  • 1 contributor

Commits on Feb 27, 2023

  1. Various small fixes towards building with other compilers

    * Fix various non-GCC warnings (no effect on GCC)
    * Reduce use of typeof since non GCC compilers may not support it
    * Introduce PICO_C_COMPILER_IS_GNU, PICO_C_COMPILER_IS_CLANG, PICO_C_COMPILER_IS_IAR to CMake as if (CMAKE_C_COMPILER_ID STREQUAL "xxx") is a bit verbose
    * Use "unified_asm" macro for all inline asm (it is "volatile __asm" on GNU with a .syntex unified)
    * Use NOLOAD instead of COPY in linker scripts (arguably more correct anyway)
    * Use the same style for setting _etext in all 4 linker scripts (to the beginning of .data). Clang aligns .data on a 16 byte boundary. Note ideally we'd
      add a new symbol __data_source, however that would break backwards compatibility with existing user linker scripts
    * Use "a" for .stack, .heap sections because clang complains otherwise, and they are explicitly NOLOAD anyway
    * Avoid duplicating __sev, __wfe, __wfi which Clang sometimes seems to provide as built-ins
    * Add missing kitchen_sink_blocked_ram binary
    * Allow build with LLVM Embedded Toolchain Form ARM v 14.0.0 (unsupported atm)
    kilograham committed Feb 27, 2023
    Copy the full SHA
    9f68faf View commit details
  2. Copy the full SHA
    e63c22a View commit details

Commits on Feb 28, 2023

  1. Copy the full SHA
    a0f5dac View commit details
  2. Copy the full SHA
    ed4e8a6 View commit details

This comparison is taking too long to generate.

Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.

You can try running this command locally to see the comparison on your machine:
git diff master...iar/develop