|
[Zephyr-devel] Changing default branch name on GitHub (delayed)
All, We’ve identified some changes we need to make to west to make the transition of branch name cleaner. We will delay the branch name change until these changes are made to west and a version of wes
All, We’ve identified some changes we need to make to west to make the transition of branch name cleaner. We will delay the branch name change until these changes are made to west and a version of wes
|
By
Kumar Gala
· #2490
·
|
|
Changing default branch name on GitHub - possible action required
We will be changing the default branch on github from ‘master' to ‘main' on Friday (Mar 11, 2021). There is no action required for any open PRs, however you’ll need to update your local git clone as f
We will be changing the default branch on github from ‘master' to ‘main' on Friday (Mar 11, 2021). There is no action required for any open PRs, however you’ll need to update your local git clone as f
|
By
Kumar Gala
· #2489
·
|
|
DTS own node DT_N_S_ undeclared
So you are seeing correct behavior. The are several ways to get a NODE reference (DT_PATH and DT_NODELABEL) are 2 of them. They should expand to DT_N_S_vbatt_S_vbatt0. (This is meant to be concatenate
So you are seeing correct behavior. The are several ways to get a NODE reference (DT_PATH and DT_NODELABEL) are 2 of them. They should expand to DT_N_S_vbatt_S_vbatt0. (This is meant to be concatenate
|
By
Kumar Gala
· #2485
·
|
|
DTS own node DT_N_S_ undeclared
Oh, noticed your DT_PATH(batt, vbatt_lipo) is not correct. Try: #define VBATT_LIPO DT_PATH(batt, vbatt0) or #define VBATT_LIPO DT_NODELABEL(vbatt_lipo) - k
Oh, noticed your DT_PATH(batt, vbatt_lipo) is not correct. Try: #define VBATT_LIPO DT_PATH(batt, vbatt0) or #define VBATT_LIPO DT_NODELABEL(vbatt_lipo) - k
|
By
Kumar Gala
· #2483
·
|
|
DTS own node DT_N_S_ undeclared
That looks normal. What does the code you are building look like? I think the .dts you have looks reasonable, my guess is the issue is more on the code usage side. Your define of VBATT_LIPO will give
That looks normal. What does the code you are building look like? I think the .dts you have looks reasonable, my guess is the issue is more on the code usage side. Your define of VBATT_LIPO will give
|
By
Kumar Gala
· #2482
·
|
|
Using the Cortex M4 on IMX7D
I don’t believe the remoteproc loading was ever supported for the imx family with zephyr. This is something you’d need to add support for. I think it might be supported on the STM32 MP1 as an example.
I don’t believe the remoteproc loading was ever supported for the imx family with zephyr. This is something you’d need to add support for. I think it might be supported on the STM32 MP1 as an example.
|
By
Kumar Gala
· #2468
·
|
|
SDK 0.12.3 Release
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.3 Please download and try things out and report any issues. * Backport GCC 10.2+ (ie, c
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.3 Please download and try things out and report any issues. * Backport GCC 10.2+ (ie, c
|
By
Kumar Gala
· #2460
·
|
|
Cross compiling for AR71xx
While technically possible there isn’t a port of Zephyr in the upstream code base for MIPS. There are some PRs for this but they haven’t gotten to a mergeable state. In addition, as Zephyr is a RTOS i
While technically possible there isn’t a port of Zephyr in the upstream code base for MIPS. There are some PRs for this but they haven’t gotten to a mergeable state. In addition, as Zephyr is a RTOS i
|
By
Kumar Gala
· #2444
·
|
|
undefined reference to `__bswapdi2' when trying to link tinycbor for RISC-V
Try something like: /opt/zephyr-sdk-0.11.3/riscv64-zephyr-elf/bin/riscv64-zephyr-elf-gcc … -Wl,--start-group zephyr/kernel/libkernel.a zephyr/CMakeFiles/offsets.dir/arch/riscv/core/offsets/offsets.c.o
Try something like: /opt/zephyr-sdk-0.11.3/riscv64-zephyr-elf/bin/riscv64-zephyr-elf-gcc … -Wl,--start-group zephyr/kernel/libkernel.a zephyr/CMakeFiles/offsets.dir/arch/riscv/core/offsets/offsets.c.o
|
By
Kumar Gala
· #2442
·
|
|
undefined reference to `__bswapdi2' when trying to link tinycbor for RISC-V
Based on the gcc line, you are getting libgcc pulled in via -L"/opt/zephyr-sdk-0.11.3/riscv64-zephyr-elf/bin/../lib/gcc/riscv64-zephyr-elf/9.2.0” and -lgcc. What version of zephyr are you using? Have
Based on the gcc line, you are getting libgcc pulled in via -L"/opt/zephyr-sdk-0.11.3/riscv64-zephyr-elf/bin/../lib/gcc/riscv64-zephyr-elf/9.2.0” and -lgcc. What version of zephyr are you using? Have
|
By
Kumar Gala
· #2431
·
|
|
SDK 0.12.2 Release
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.2 Please download and try things out and report any issues. [ I skipped the release ann
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.2 Please download and try things out and report any issues. [ I skipped the release ann
|
By
Kumar Gala
· #2421
·
|
|
SDK 0.12.0 Release
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0 NOTE: In some cases changes are required to utilize SDK 0.12.0 with Zephyr (for examp
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0 NOTE: In some cases changes are required to utilize SDK 0.12.0 with Zephyr (for examp
|
By
Kumar Gala
· #2385
·
|
|
Query regarding Bluetooth Controller Porting
You may want to ask this question on the devel list. (devel@...) - k
You may want to ask this question on the devel list. (devel@...) - k
|
By
Kumar Gala
· #2369
·
|
|
Zephyr SDK 0.12.0-beta-3 available for testing
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-beta-3 Please download and try things out and report any issues. Please report issues
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-beta-3 Please download and try things out and report any issues. Please report issues
|
By
Kumar Gala
· #2362
·
|
|
Zephyr SDK 0.12.0-beta-2 available for testing
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-beta-2 Please download and try things out and report any issues. Please report issues
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-beta-2 Please download and try things out and report any issues. Please report issues
|
By
Kumar Gala
· #2341
·
|
|
Using an external DTS binding for an out-of-tree driver
Have you looked at: https://docs.zephyrproject.org/latest/application/index.html#custom-board-devicetree-and-soc-definitions https://docs.zephyrproject.org/latest/application/index.html#devicetree-def
Have you looked at: https://docs.zephyrproject.org/latest/application/index.html#custom-board-devicetree-and-soc-definitions https://docs.zephyrproject.org/latest/application/index.html#devicetree-def
|
By
Kumar Gala
· #2323
·
|
|
Zephyr SDK 0.12.0-beta-1 available for testing
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-beta-1 Please download and try things out and report any issues. Please report issues
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-beta-1 Please download and try things out and report any issues. Please report issues
|
By
Kumar Gala
· #2298
·
|
|
API meeting: agenda
Just FYI, some of the label & links are mismatched (ie link takes you to one of the other PRs) - k
Just FYI, some of the label & links are mismatched (ie link takes you to one of the other PRs) - k
|
By
Kumar Gala
· #2291
·
|
|
Zephyr SDK 0.12.0-alpha-1 available for testing
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-alpha-1 Please download and try things out and report any issues. Please report issue
Hi, Latest version of the SDK can be found here: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.12.0-alpha-1 Please download and try things out and report any issues. Please report issue
|
By
Kumar Gala
· #2262
·
|
|
Community input on possible change to Discord from Slack
All, We’ve had a few discussion in the Zephyr TSC regarding the need for maintaining history in our chat communication platform and the limitation that Slack imposes on this for free usage. The genera
All, We’ve had a few discussion in the Zephyr TSC regarding the need for maintaining history in our chat communication platform and the limitation that Slack imposes on this for free usage. The genera
|
By
Kumar Gala
· #2114
·
|