-
Notifications
You must be signed in to change notification settings - Fork 3k
Added 'macros' keyword to build_api.py to allow building USB libraries #89
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bogdanm
added a commit
that referenced
this pull request
Oct 21, 2013
Added 'macros' keyword to build_api.py to allow building USB libraries Thanks! This is something I've neglected to do in one of my latest commits.
Wow, that was much faster than I expected. Glad I could help! |
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Jan 12, 2018
… from d0a2597..8689fca 8689fca Reverting address check from transaction find (ARMmbed#89) ca3c3ab Fix transactions to handle all token lengths (ARMmbed#87) git-subtree-dir: features/nanostack/FEATURE_NANOSTACK/coap-service git-subtree-split: 8689fca
kegilbert
pushed a commit
to kegilbert/mbed-os
that referenced
this pull request
Jan 25, 2018
… from d0a2597..8689fca 8689fca Reverting address check from transaction find (ARMmbed#89) ca3c3ab Fix transactions to handle all token lengths (ARMmbed#87) git-subtree-dir: features/nanostack/FEATURE_NANOSTACK/coap-service git-subtree-split: 8689fca
yossi2le
pushed a commit
to yossi2le/mbed-os
that referenced
this pull request
Jan 2, 2019
The size was confused as address.
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Feb 25, 2019
0a4f6be astyle validation (ARMmbed#89) f43f52d add mention about mbed-os.lib generation and ignore example folder (ARMmbed#88) 3f48e87 .tmp_data_ptr = 0 added (ARMmbed#55) 9697f63 doc update + mbed-os 5 example application (ARMmbed#84) 891508b CI improvements - introduce Jenkinsfile (ARMmbed#87) git-subtree-dir: features/frameworks/mbed-trace git-subtree-split: 0a4f6be43da09feb2e55eae0697546bcc23d0a23
linlingao
added a commit
to linlingao/mbed-os
that referenced
this pull request
Jul 12, 2019
Disable MPU for now
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Feb 20, 2020
…756886f..9a61e73787 9a61e73787 Merge pull request ARMmbed#89 from ARMmbed/update_from_mbedos 2a07f443ed Fixed typo: 'lenght' in ip6string.h 050aa7f31a Include ns_types.h before mbed_trace.h in Nanomesh git-subtree-dir: features/frameworks/nanostack-libservice git-subtree-split: 9a61e737872ba60fa73e9375011f63e9e266577a
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Feb 21, 2020
…756886f..9a61e73787 9a61e73787 Merge pull request ARMmbed#89 from ARMmbed/update_from_mbedos 2a07f443ed Fixed typo: 'lenght' in ip6string.h 050aa7f31a Include ns_types.h before mbed_trace.h in Nanomesh git-subtree-dir: features/frameworks/nanostack-libservice git-subtree-split: 9a61e737872ba60fa73e9375011f63e9e266577a
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Feb 26, 2020
…756886f..9a61e73787 9a61e73787 Merge pull request ARMmbed#89 from ARMmbed/update_from_mbedos 2a07f443ed Fixed typo: 'lenght' in ip6string.h 050aa7f31a Include ns_types.h before mbed_trace.h in Nanomesh git-subtree-dir: features/frameworks/nanostack-libservice git-subtree-split: 9a61e737872ba60fa73e9375011f63e9e266577a
pan-
added a commit
to pan-/mbed
that referenced
this pull request
May 29, 2020
Updating mbed-os to mbed-os-5.5.1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This morning I received an error message when running
python workspace_tools/build.py -u -m KL25Z -t GCC_ARM
stating thatbuild_lib()
did not expect themacros
keyword argument. I noticed thatbuild_lib()
just callsbuild_library()
which does accept themacros
keyword, so I just changedbuild_lib
to pass it through.I built the mbed SDK from a clone of the repo this morning on a Windows XP machine using Python 2.7.5. This change appears to have allowed a successful build of the USB libraries on my machine, but I haven't used mbed to program any hardware yet, nor have I tested it on any other systems.