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

Support mbed_start_application for Cortex-M23 #6949

Merged
merged 4 commits into from
Jun 7, 2018

Commits on May 18, 2018

  1. Configuration menu
    Copy the full SHA
    b3f17a9 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2018

  1. Fix start_new_application compile error on Cortex-M23

    With "mov r2, #0", compile OK with GCC_ARM, but failed with ARMC6.
    With "ldr r2, =0", compile OK with ARMC6, but failed with GCC_ARM.
    Finally, with "movw r2, #0"/"movt r2, #0", compile OK with both ARMC6 and GCC_ARM.
    ccli8 committed May 21, 2018
    Configuration menu
    Copy the full SHA
    646f614 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2018

  1. Fix mbed_start_application on Cortex-M23

    1. M23 doesn't support ICTR and supports up to 240 external interrupts.
    2. Fix reset of SHPR
    3. Fix inline assembly compile error with ARMC6
    ccli8 committed May 28, 2018
    Configuration menu
    Copy the full SHA
    3c14cb6 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2018

  1. Configuration menu
    Copy the full SHA
    23dcd82 View commit details
    Browse the repository at this point in the history