Release v1.1.1 (hotfix)#12
Merged
Merged
Conversation
uart_irq_update() returns void in current Zephyr; the PHY ISR used it in a boolean (if (!uart_irq_update(dev))), so the UART PHY did not compile when targeting a real board. native_sim builds use the virtual PHY, so CI never exercised this path. Call uart_irq_update() as a statement per the API. Validated on a Nucleo-F103RB (Cortex-M3): builds (FLASH 25% / RAM 54% of 20KB), flashes via openocd, boots, and runs on silicon. Adds a nucleo_f103rb board overlay (IO-Link UART on USART1). Bumps version to 1.1.1.
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
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.
iolinki v1.1.1 — hotfix
Real-hardware validation on a Nucleo-F103RB (STM32F103RB, Cortex-M3) surfaced a build defect in the Zephyr UART PHY that shipped in v1.1.0.
Fixed
uart_irq_update()returnsvoidin current Zephyr, but the ISR used it in a boolean (if (!uart_irq_update(dev))).native_simbuilds use the virtual PHY, so CI never compiled this path. Now called as a statement per the API.Added
nucleo_f103rbboard overlay (IO-Link UART on USART1).Validated on silicon
nucleo_f103rb: FLASH 25% (33 KB/128 KB), RAM 54% (11 KB/20 KB) — confirms the resource-constrained claim.Patch release; no API changes.