forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Gridpoint patches on top of zephyr 4.3.0 [DO NOT MERGE] #1
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
Draft
ringlej
wants to merge
9
commits into
zephyr-v4.3.0
Choose a base branch
from
gridpoint-4.3.0
base: zephyr-v4.3.0
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.
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
Add a new Kconfig option SHELL_BACKEND_SERIAL_OLF_CRLF that allows configuring the line ending format used by the shell UART backend. When enabled (default), the shell will use CR+LF (\r\n) line endings for output text. When disabled, it will use the system default (typically just LF, \n). This replaces the hardcoded SHELL_FLAG_OLF_CRLF setting with a conditional expression that selects the appropriate flag based on the new configuration option. This gives users more control over terminal output formatting when needed for specific applications or terminal emulators.
Add noise floor measurement functionality to the SX12xx LoRa driver. This includes: - New lora_rssi.h header with noise floor API - sx12xx_lora_get_noise_floor() implementation - RSSI callback registration in Radio struct - Extension API for driver-specific noise floor implementations
96aaf26 to
0e1589d
Compare
TLS sections (e.g. .tdata/.tbss) use addresses as TLS offsets and can overlap normal VMA ranges. Avoid using TLS section address ranges for RAM bucketing and classify TLS symbols using section flags instead. Signed-off-by: Jon Ringle <jringle@gridpoint.com>
When total_size is missing, skip the percentage line in hover text. Signed-off-by: Jon Ringle <jringle@gridpoint.com>
Improve readability of sunburst labels in generated interactive plot. Signed-off-by: Jon Ringle <jringle@gridpoint.com>
Add optional low-power sequencing for SX126x (GPIO and SUBGHZ radio control) so the host can turn the radio off between operations. Remove debug helpers dump_gpio() and dump_rf_ctrl(). Drop gridpoint_stm32wl_subghz_radio compat; use st,stm32wl-subghz-radio only. Signed-off-by: Jon Ringle <jringle@gridpoint.com>
Add support for RTC_ALARM_TIME_MASK_NSEC on STM32 series that implement the RTC_ALRMASSR/RTC_ALRMBSSR subsecond alarm registers. Infer whether NSEC matching was requested from the programmed MASKSS field in the alarm subsecond register to avoid storing additional alarm state. Signed-off-by: Jon Ringle <jringle@gridpoint.com>
4b00955 to
f267da3
Compare
Wrap alloc_node struct, k_free, z_thread_malloc calls, and k_queue_alloc_append/prepend APIs with #ifdef CONFIG_KERNEL_MEM_POOL. This allows building with CONFIG_KERNEL_MEM_POOL=n without requiring stub implementations for heap functions. The alloc-based queue APIs are only meaningful when heap is available. Signed-off-by: GridPoint <engineering@gridpoint.com>
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.
Shadow branch to track GridPoint changes to the Zephyr repo since the
v4.3.0tag.Upstreaming note: some of the commits in this PR have been submitted upstream as separate Zephyr PRs. Here is the status of those:
Process note: This PR is intentionally a draft and is not intended to be merged. The
gridpoint-4.3.0branch exists as a convenient place to maintain our local patch stack and to generate patch files viagit format-patchfor downstream consumers.