-
Notifications
You must be signed in to change notification settings - Fork 3k
I2C fix added, SPI slave fixes added and SPISLAVE enabled #3597
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
Conversation
binary output file when more than 316K binary is generated. Need updated daplink bootloader to flash >316K binary file by drag n drop.Refer pull request generated for flashalgo and daplink repo for more info.IAR lnker script modified for flash merge-640K and format changed as per IAR requirement.
…510. Linker places feature specific and application code in Flash B while the rest of the mbed-os including rtos is placed in Flash A.
@maclobdell |
Hi Pradeep, looks like your branch named "origin" has a base that is on top of your master branch which has the other commits, and the base of your master branch is the one that forks off the ARMmbed master branch. So, basically you want your "origin" branch to fork directly from the ARMmbed master branch, in order to only have the i2c commit in the PR. |
Hi Pradeep, I just tried the following steps and it seems to accomplish the previous recommendation I made. I pulled the latest updates from github.com/armmbed/mbed-os (also called 'origin' in my case), then checked out the origin/master branch. Created a new branch from that point, gave the branch a new name, then "cherry picked" the commit that makes the i2c fixes onto the new branch. I use Git Extensions tool, but this should be able to be done via git commands or other git tools. I hope this helps. |
@maclobdell |
Hi @pradeep-gr, you're almost there! You're currently trying to push a branch to the ARMmbed repository for mbed-os, which it is correctly preventing you from doing :) You need to push it to your "fork" of the mbed-os repo, which I believe you have one here: https://github.com/pradeep-gr/mbed-os5-onsemi. (If you look at the top of the page, you'll see the text "forked from ARMmbed/mbed-os"), which is your clue that this your "fork") If you run the following commands you should then be able to submit a PR:
At this point GitHub should let you submit the PR! Hope that helps! |
One small addition to the above: Always check what are your remotes (I run this command always when I switch repositories, as I have many remotes often)
In this case, it would show that origin is mbed-os repository, not your fork :-) |
@maclobdell @bridadan @0xc0170 Thanks for your help to raise separate PR. I have raised PR for I2C and SPI fixes. #3611. |
@pradeep-gr great, thanks for doing that! I'll close this one and we'll continue the discussion on #3611 |
Notes:
Description
A few sentences describing the overall goals of the pull request's commits.
Status
READY/IN DEVELOPMENT/HOLD
Migrations
If this PR changes any APIs or behaviors, give a short description of what API users should do when this PR is merged.
YES | NO
Related PRs
List related PRs against other branches:
Todos
Deploy notes
Notes regarding the deployment of this PR. These should note any
required changes in the build environment, tools, compilers, etc.
Steps to test or reproduce
Outline the steps to test or reproduce the PR here.