forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Tsvbootloaderchanges #4
Closed
Closed
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
Before that fix, the default mrba was used; added DMA Base Address to DTSI. Fixes zephyrproject-rtos#68472 Signed-off-by: Sven Ginka <[email protected]>
Add 3.7.0 release notes for networking. Signed-off-by: Robert Lubos <[email protected]>
Added note about enabled flash support for Intel Hex files for the LinkServer runner. Signed-off-by: Andrej Butok <[email protected]>
A binding for the m55 cpu was missing. Add the yaml files. Signed-off-by: Ryan McClelland <[email protected]>
- applied the exact parameter names of the interface to implementation Signed-off-by: Hess Nathan <[email protected]>
…tation `west debug` is no longer an issue with LinkServer runner. Signed-off-by: Derek Snell <[email protected]>
LOG_* adds "\n" by itself. Fixes redundant lines during startup: ``` [00:00:00.100,000] <inf> i2c_ll_stm32_v2: I2C TIMING = 0xb0f6343d [00:00:00.100,000] <inf> i2c_ll_stm32_v2: I2C TIMING = 0xb0f6343d [00:00:00.100,000] <inf> i2c_ll_stm32_v2: I2C TIMING = 0xb0f6343d [00:00:00.100,000] <inf> i2c_ll_stm32_v2: I2C TIMING = 0xb0f6343d [00:00:00.100,000] <inf> flash_stm32_qspi: Reading SFDP ``` Signed-off-by: Nerijus Bendžiūnas <[email protected]>
Check if the calculated package length exceeds the maximum possible value. Fixes zephyrproject-rtos#75015 Signed-off-by: Benedikt Schmidt <[email protected]>
The `type` parameter of `struct bt_le_scan_param` is documented as taking a `BT_LE_SCAN_TYPE_*` value, not a `BT_HCI_LE_SCAN_*` value. In practice this makes no difference as the values are defined as the same integer, but does result in `<zephyr/bluetooth/hci.h>` not needing to be included. Signed-off-by: Jordan Yates <[email protected]>
Delay an ACK in case no PSH flag is present in the data packet. as described in RFC 813. This allows to reduce the number of ACK packets we send and thus improve the TCP download throughput. The results achieved on `nucleo_h723zg` board and the zperf sample are as follows: Before: 77.14 Mbps After: 93.14 Mbps Signed-off-by: Robert Lubos <[email protected]>
The macro was modified in a way that may cause issues for some. See e.g. 15d66cc for an example of it needing a change. The migration guide GH PR number refers to the PR that modified the macro. Signed-off-by: Emil Gydesen <[email protected]>
Removed the declaration and assignment of `eth_ctx` variable from `net_if_get_wifi_sta` and `net_if_get_wifi_sap` functions since it was not being used. Signed-off-by: Pisit Sawangvonganan <[email protected]>
Add notes on changes in Flash Map. Signed-off-by: Dominik Ermel <[email protected]>
If no maintainers are present, area should not be considered maintained. Signed-off-by: Gerard Marull-Paretas <[email protected]>
Error if an area is set as maintained but it has no maintainers assigned. Signed-off-by: Gerard Marull-Paretas <[email protected]>
Flash API additions and new drivers. Signed-off-by: Dominik Ermel <[email protected]>
Add CANXL MRU handler, use the same RX, TX IRQ number. Update the error priority that is lower priority than the the tx_rx_mru priority incase the error interrupt happens continuously, mru interrupt priority must be higher to get report error counter. Otherwise the mru interrupt can be delayed by error interrupt and never call to MRU handler. This fixes zephyrproject-rtos#75022. Signed-off-by: Cong Nguyen Huu <[email protected]>
Replace `#if IS_ENABLED()` with `#if defined()` as recommended by the documentation of `IS_ENABLED`. Signed-off-by: Jordan Yates <[email protected]>
Add validation of the number of ASEs in control point write requests. This validates that the number of ASEs in the control point is not greater than the total number of ASEs we support. This also validates that the GATT MTU is large enough to hold all the responses from the write since those can only be sent as notifications and never be truncated. Finally this validates and updates the size of the buffer used to hold the responses, which may be an optimization for some builds. Signed-off-by: Emil Gydesen <[email protected]>
MWDT requires function to be declared with argument types. This PR provides explisitly type cast for out routine inside z_cbvprintf_impl(). This PR also actual to LLVM-based compilers with strict rules of compilation. It covers warnings generated with additional flag -Wincompatible-function-pointer-types-strict. This fixes zephyrproject-rtos#74562 Signed-off-by: Nikolay Agishev <[email protected]>
The driver does not implement host_wakeup, remove rwup capability flag. Signed-off-by: Johann Fischer <[email protected]>
I broke the rendering of the CFB_FONT_MSB_FIRST font in the previously committed zephyrproject-rtos#53796. I will correct the entire font rendering process to make it easier to remove the restriction that the vertical size of the font must be a multiple of 8. Signed-off-by: TOKITA Hiroshi <[email protected]>
Add the `cfb_framebuffer_deinit` function for deinitializing the framebuffer. Signed-off-by: TOKITA Hiroshi <[email protected]>
Add test cases for testing basic CFB functions. These tests cannot run in CI because the CI environment has no display. Mark these tests as `build_only`. Signed-off-by: TOKITA Hiroshi <[email protected]>
Update cmsis-nn to version 6.0.0. Revision history can be found at: https://arm-software.github.io/CMSIS-NN/latest/rev_hist.html Signed-off-by: Jordan Yates <[email protected]>
Update `tflite-micro` to the latest version. Signed-off-by: Jordan Yates <[email protected]>
Add new sources for 4 bit function variants to build system. Signed-off-by: Jordan Yates <[email protected]>
Specify the missing filter dimension that was the reason for the v6.0.0 version bump. Signed-off-by: Jordan Yates <[email protected]>
Add `CONFIG_REQUIRES_FLOAT_PRINTF=y` to tflite-micro samples as in the past the module was using its own `printf` implementation, but now uses our logging infrastructure. Signed-off-by: Jordan Yates <[email protected]>
Update the version update and link to the changelog. Signed-off-by: Jordan Yates <[email protected]>
…iour" This reverts commit b10f1ca. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
…oup" This reverts commit 308322e. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
…port" This reverts commit b2243af. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit be086f1. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit b82b5b0. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit d9855da. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 499a633. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 48dff55. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 581a0f5. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 305ec62. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 49ac191. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 93973e2. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 2d72966. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 86b9293. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit 6f62292. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This reverts commit a9a909c. PR zephyrproject-rtos#73978 introduced a regression. Unfortunately this PR cannot be reverted without reverting also Let's revert both PRs to stabilize main again towards the 3.7 release. For more details on the issue see zephyrproject-rtos#75205 Signed-off-by: Alberto Escolar Piedras <[email protected]>
This introduces a high-level summary of the most notable changes in 3.7. This also tries to capture the most useful changes since previous LTS. Signed-off-by: Benjamin Cabé <[email protected]>
Issue: When there are two similar SSIDs (e.g. MySSID and MySSID_Guest), the current implementation may use the wrong (truncated) SSID for the connection. See issue#74910 for details. Fix: Updated airoc_wifi_scan_cb_search to filter all SSID where length is different than the user-entered SSID. Signed-off-by: Nazar Palamar <[email protected]>
According to the RV32M1 Series Manual, Rev 1.1 RV32M1 series supports the C extension, and doesn't support the A extension. Apply fixes accordingly. Signed-off-by: Filip Kokosinski <[email protected]>
…ring This commit makes the RV32M1 SoC rely on the default behavior of relying on the `CONFIG_RISCV_ISA_EXT_*` config options, and removes the `zephyr_compile_options` override when the standard toolchain is used. Signed-off-by: Filip Kokosinski <[email protected]>
Enabling BT_HCI_SET_PUBLIC_ADDR option for STM32WBA BLE HCI driver Signed-off-by: Alessandro Manganaro <[email protected]>
Providing setup implementation for STM32WBA BLE HCI driver Signed-off-by: Alessandro Manganaro <[email protected]>
The first page frame index was reserved for head and tail ^pointers. However there are cases where the first frame is actually made evictable and would trigger the assertion guarding against that. Fix this by applying an offset to actual frame indexes. Signed-off-by: Nicolas Pitre <[email protected]>
There are 2-level switch statements (one switch inside another) which were not properly terminated with 'break' statements, leading to implicit fallthrough. Fix that. Signed-off-by: Marcin Niestroj <[email protected]>
Upgrade the CI image for x86 macos from 12 to 13, this is apparently the latest "free" x86 macos runner that will be supported, let's switch to it until it gets deprecated. Signed-off-by: Fabio Baltieri <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have moved the ROM by 17 lines so line zephyrproject-rtos#65 has become zephyrproject-rtos#48 and zephyrproject-rtos#67 become zephyrproject-rtos#50 now so the changes look good. Will want for Meera to review and approve.
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.
Adding the following updates to the booloader: