-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Remove swtimer #34
Merged
Merged
Remove swtimer #34
Conversation
This file contains 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
see #4
OlegHahm
pushed a commit
to OlegHahm/RIOT
that referenced
this pull request
Nov 6, 2013
…rt0_input switch thread instead of exiting context, handle EOF
nmeum
added a commit
to beduino-project/RIOT
that referenced
this pull request
Feb 17, 2017
This is achieved by using bindgen. Support for bindgen has been integrated into the existing Makefiles. To use bindgen define the variables `RUST_FFI_HEADER` and `RUST_FFI_TYPES` in your modules Makefile. Bindgen will then generate Rust code for the given types from the given header file. The generated code can be used in your crate by adding `mod ffi;` to your `lib.rs` file. The GPIO wrapper has been refactored to use bindgen, types are now generated with bindgen. This is useful because RIOTs header files use a lot of `#ifdefs` and bindgen is able to parse them for us. Bindings for extern functions are currently not generated with bindgen even though that would theoretically be possible. Fixes RIOT-OS#34
nmeum
pushed a commit
to beduino-project/RIOT
that referenced
this pull request
Feb 17, 2017
Support for code auto generation from header files Closes RIOT-OS#26 and RIOT-OS#34 See merge request !8
nmeum
added a commit
to beduino-project/RIOT
that referenced
this pull request
Feb 24, 2017
This is achieved by using bindgen. Support for bindgen has been integrated into the existing Makefiles. To use bindgen define the variables `RUST_FFI_HEADER` and `RUST_FFI_TYPES` in your modules Makefile. Bindgen will then generate Rust code for the given types from the given header file. The generated code can be used in your crate by adding `mod ffi;` to your `lib.rs` file. The GPIO wrapper has been refactored to use bindgen, types are now generated with bindgen. This is useful because RIOTs header files use a lot of `#ifdefs` and bindgen is able to parse them for us. Bindings for extern functions are currently not generated with bindgen even though that would theoretically be possible. Fixes RIOT-OS#34
nmeum
added a commit
to beduino-project/RIOT
that referenced
this pull request
Mar 20, 2017
This is achieved by using bindgen. Support for bindgen has been integrated into the existing Makefiles. To use bindgen define the variables `RUST_FFI_HEADER` and `RUST_FFI_TYPES` in your modules Makefile. Bindgen will then generate Rust code for the given types from the given header file. The generated code can be used in your crate by adding `mod ffi;` to your `lib.rs` file. The GPIO wrapper has been refactored to use bindgen, types are now generated with bindgen. This is useful because RIOTs header files use a lot of `#ifdefs` and bindgen is able to parse them for us. Bindings for extern functions are currently not generated with bindgen even though that would theoretically be possible. Fixes RIOT-OS#34
bergzand
pushed a commit
to bergzand/RIOT
that referenced
this pull request
Apr 23, 2018
…etadata_size firmware: don't depend on sizeof(firmware_metadata_t)
ZetaR60
pushed a commit
to ZetaR60/RIOT
that referenced
this pull request
Jun 30, 2018
add vim-common, which provides /usr/bin/xxd
chrysn
pushed a commit
to chrysn-pull-requests/RIOT
that referenced
this pull request
Sep 16, 2022
sniffer: add message queue for dumper thread
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.
Pull Request to Issue #4