forked from tock/tock
-
Notifications
You must be signed in to change notification settings - Fork 7
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
fixed outdated commands #13
Open
U-alb
wants to merge
3,865
commits into
WyliodrinEmbeddedIoT:wifi
Choose a base branch
from
U-alb:wifi
base: wifi
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
…le-ticks-width-2 capsules/alarm: left-justify 32 bit ticks, re-architect alarm, add unit tests
Remove dead code
This avoids all of the MAC layers, framing, etc. and works with the radio directly.
Bump to nightly-2024-05-23 of Rust. This includes: - a few clippy fixes - Removing mut from &mut self that don't need it Signed-off-by: Alistair Francis <[email protected]>
Signed-off-by: Alistair Francis <[email protected]>
bump Rust nightly to nightly-2024-05-23 and set optimize_for_size
This is not used and instead OpenThread runs in userspace.
802.15.4 HIL updates; nRF52840 IEEE 802.15.4 Driver Updates
appid: add null checker
boards: nrf52840dk: remove thread capsule
Temperature is a 20-bit, two's complement value in both chips. Further, the datasheets provide example code, which treats all units as signed, 32-bit values while doing math. Functionally, this should make no difference except for temperatures below zero Celsius. This came up when considering tock#2967
802.15.4: Add raw userspace driver
802.15.4: Revert raw/encrypted receive
This moves the 15.4/udp stack into their own function in lib.rs which main.rs files can then use if they want. Unfortunately this gets more and more complicated as now the sub-boards need access to the alarm mux.
802.15.4: Revert raw TX in 15.4 stack
boards: nrf52840dk: Make 15.4 stack optional; add raw 15.4 stack to tutorial board
Add a helper to convert an `Option<NonZeroU32>` to a `ShortId`.
Add an assigner which uses the TBF header to assign a ShortId.
Accidentally added.
clippy: deny `explicit_auto_deref`
clippy: deny `borrow_deref_ref`
clippy: deny `from-over-into`
…egistering_for_rp2040rtc Fixing deferred calls registering for rp2040 rtc
clippy: deny `wrong-self-convention`
chips: apollo3: stimer: Ensure alarm occurs if set in the past
clippy: deny `redundant_field_names`
clippy: deny `overflow_check_conditional`
kernel crate: Improve comments and generated docs
Notes from Core working group call: July 12, 2024
read_region() originally had a `offset` argument. The idea was to avoid reading an entire flash region and only read part of the region, by offsetting into the region. This was never actually supported, the idea was to be able to support it without API breakages, but in practice I don't think that will be possible as we will need some API changes no matter what. As offset is never used let's just remove it. This will simplify things a little bit and it's easy to re-add in the future if we want to support partial page reads. This also fixes tock#4066 Signed-off-by: Alistair Francis <[email protected]>
Signed-off-by: Alistair Francis <[email protected]>
Signed-off-by: Alistair Francis <[email protected]>
kernel: syscall: fix missing comments
make: clippy error on warnings
Co-authored-by: Alexandru Radovici <[email protected]>
Network working group call notes: July 15, 2024
tickv: Remove the offset from read_region()
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 Overview
This pull request fixes outdated commands in the Makefile for the Arduino Nano RP2040 Connect
Testing Strategy
This pull request was tested by building and flashing the Wifi app on the board