Re: How to specify flash offset for a new board
Stefan Jaritz
As well
CONFIG_FLASH_LOAD_OFFSET=0x20000
in proj.conf works fine for stm32f4xx MCUs
On 04/11/2019 08:17, laczenJMS wrote:
Hi Kees and Jan,
|
|
Upcoming Event: Zephyr Project: APIs - Tue, 11/05/2019 9:00am-10:00am, Please RSVP
#cal-reminder
devel@lists.zephyrproject.org Calendar <devel@...>
Reminder: Zephyr Project: APIs When: Tuesday, 5 November 2019, 9:00am to 10:00am, (GMT-08:00) America/Los Angeles Where:https://zoom.us/j/177647878 An RSVP is requested. Click here to RSVP Organizer: devel@... Description: Join from PC, Mac, Linux, iOS or Android: https://zoom.us/j/177647878 Live meeting minutes: https://docs.google.com/
|
|
Re: Issue in OTA of zephyr OS over UART on Nordic nrf52840_pca10056 chip
#ble
#bluetoothmesh
#nrf52840
#uart
Adam Podogrocki
Hi Mayank, If you are sure the partition layout of flash memory is correct and you flashed MCUboot and SMP_SVR sample respectively, then please check if the CONFIG_UART_MCUMGR_ON_DEV_NAME is set correctly. Regards, Adam
On Tue, 5 Nov 2019 at 15:15, Mayank <mayank7117@...> wrote:
|
|
API meeting: agenda
Carles Cufi
Hi all,
This week we will look at GPIO: - GPIO: Update on progress - Look at the PRs with driver conversion (https://github.com/zephyrproject-rtos/zephyr/issues/18530) - Check users of GPIO APIs: https://github.com/zephyrproject-rtos/zephyr/issues/20017 - Tips for converting users can be found here: https://github.com/zephyrproject-rtos/zephyr/issues/20017#issuecomment-549315497 (thanks Peter!) - Any additional outstanding PRs to topic-gpio Additional items in the "Triage" column in the GitHub project may be discussed if time permits. If you want an item included in the meeting, please add it to the GitHub project. https://github.com/zephyrproject-rtos/zephyr/wiki/Zephyr-Committee-and-Working-Group-Meetings#zephyr-api-discussion https://github.com/zephyrproject-rtos/zephyr/projects/18 https://docs.google.com/document/d/1lv-8B5QE2m4FjBcvfqAXFIgQfW5oz6306zJ7GIZIWCk/edit Regards, Carles
|
|
Issue in OTA of zephyr OS over UART on Nordic nrf52840_pca10056 chip
#ble
#bluetoothmesh
#nrf52840
#uart
mayank7117@...
Hi, Now, when i use mcumgr to communicate 'hello' message over serial/UART, It shows error of connection timed out. (Also tried with -t switch, but no luck).
|
|
Re: ELC-E Zephyr Multiimage BoF - Bob Build Tool
Bolivar, Marti
"Jan Kloetzke via Lists.Zephyrproject.Org"
<jan=kloetzke.net@...> writes: On Fri, Nov 01, 2019 at 09:24:59AM +0000, Bolivar, Marti wrote:Seems like zephyr.yaml is the file controlling this in a map called"Jan Kloetzke via Lists.Zephyrproject.Org"Ok, here it is: https://github.com/jkloetzke/zephyr-example-recipes checkoutSCM. (I haven't read the bob docs, but I'm sure that's covered there.) I made a quick hack west extension to convert the upstream zephyr manifest into the format used there, in case it's useful: https://github.com/mbolivar/tree/bob-the-builder Example: $ west gen-bob-checkout checkoutSCM: - commit: 07380358424edecdefeb28ed7cb43e27b530014d dir: zephyr scm: git url: https://github.com/zephyrproject-rtos/zephyr - commit: 04ff67a0826a51041e51034faf8fc4d3eeacd846 dir: modules/hal/atmel scm: git url: https://github.com/zephyrproject-rtos/hal_atmel - commit: e01f3bce2a94847253369efb9a081f5c0e9ec882 dir: tools/ci-tools scm: git url: https://github.com/zephyrproject-rtos/ci-tools - commit: 99129c5efc907ea613c4b73ccff07581feb58a7a dir: modules/lib/civetweb scm: git url: https://github.com/zephyrproject-rtos/civetweb [...] Just in case it's useful to anyone who wants all the projects but doesn't want to do the paperwork themselves. Additionally
|
|
Re: Add support for frdm_kl46z
Maureen Helm
Hi Michele, Yes, this would be a welcome addition.
Maureen
From: devel@... <devel@...>
On Behalf Of mdecandia via Lists.Zephyrproject.Org
Sent: Saturday, November 2, 2019 8:17 AM To: devel@... Cc: devel@... Subject: [Zephyr-devel] Add support for frdm_kl46z
Hi all,
|
|
Re: How to specify flash offset for a new board
laczenJMS
Hi Kees and Jan,
Zephyr links the code for a code partition specified in the dts as shown above by Jan by specifying in the proj.conf file: CONFIG_HAS_FLASH_LOAD_OFFSET=y
CONFIG_USE_CODE_PARTITION=y
|
|
Re: How to specify flash offset for a new board
Jan Van Winkel <jan.van_winkel@...>
Hi Kees, You can do this by creating a partition in a device tree configuration and set the chosen node"zephyr,code-partition" to point to this partition. See following files for an example: Reel Board Partition definition: Reel Board "zephyr,code-partition" assignment: Best regards, Jan
On Sun, Nov 3, 2019 at 10:06 PM <kees@...> wrote: Hi,
|
|
How to specify flash offset for a new board
kees@...
Hi,
I want to add support for my Sodaq boards. These are SAMD21, Arduino Zero compatible boards with the Arduino bootloaders on them. So, I want the code (flash) to be located at an offset of 0x2000. How do I specify this offset?
|
|
Re: ELC-E Zephyr Multiimage BoF - Bob Build Tool
Jan Kloetzke <jan@...>
On Fri, Nov 01, 2019 at 09:24:59AM +0000, Bolivar, Marti wrote:
"Jan Kloetzke via Lists.Zephyrproject.Org"Ok, here it is: https://github.com/jkloetzke/zephyr-example-recipes There is a README.md with a short overview. Basically you just have to clone the recipes and build it: $ git clone https://github.com/jkloetzke/zephyr-example-recipes.git \ --recurse-submodules $ cd zephyr-example-recipes $ bob dev demo::zephyr -j Make sure that you have the latest version of Bob. The demo recipes use the "layers" feature that has not been released yet. It's best to install Bob via: $ pip3 install [--user] git+https://github.com/BobBuildTool/bob Otherwise have a look at https://bob-build-tool.readthedocs.io/en/latest/installation.html for further options. Note that the recipes do not use west but clone the involved repositories directly and calls cmake itself. This has the advantage that there is only one tool that fetches/updates sources. Additionally the OpenAMP sample was put into a dedicated repository because some refactoring was needed, namely removing the "ExternalProject" link between the images. The recipes also show how a toolchain is defined in the recipes. There is no need for the user to install a toolchain but the right one is brought in by the recipes automatically. Usually this is done with all involved tools to maximize reproducibility but this would have just made the example more complicated. Sounds great!This is handled well by Bob. The explicit goal of Bob is to feel like "make" even though Bob controls the build of whole packages. Have fun. /Jan
|
|
Add support for frdm_kl46z
mdecandia@...
Hi all,
I would like to add support for NXP frdm_kl46z evaluation board, starting from what already done for frdm_kl25z. If useful I will move forward. Michele
|
|
Re: ELC-E Zephyr Multiimage BoF - Bob Build Tool
Bolivar, Marti
"Jan Kloetzke via Lists.Zephyrproject.Org"
<jan=kloetzke.net@...> writes: Hi Kumar,Sounds great! Please be aware of this in that case: https://github.com/zephyrproject-rtos/zephyr/issues/19918 It would be good to see a solution that doesn't have this issue. Thanks, Marti
|
|
Re: Need help in implementing a IPv4 based multicast listener application
#networking
#samples
Paul Sokolovsky
Hello,
On Wed, 30 Oct 2019 10:16:04 +0200 "Jukka Rissanen" <jukka.rissanen@...> wrote: Hi Giri,For reference, there already exists a ticket for this feature: https://github.com/zephyrproject-rtos/zephyr/issues/2336 , so interested parties are welcome to "watch" it to stay in loop on updates and/or coordinate work. Cheers,Jukka On Tue, 2019-10-29 at 22:54 -0700, giriprasad@... wrote:Hi, -- Best Regards, Paul Linaro.org | Open source software for ARM SoCs Follow Linaro: http://www.facebook.com/pages/Linaro http://twitter.com/#!/linaroorg - http://www.linaro.org/linaro-blog
|
|
Re: support BT 4.2 for 51824
Carles Cufi
Hi Tommy,
It really depends on which features you want from 4.2, but Zephyr 1.14 technically supports Bluetooth 4.2 on the nRF51.
Carles
From: devel@... <devel@...>
On Behalf Of Tommy Lin (???) via Lists.Zephyrproject.Org
Sent: 31 October 2019 08:20 To: zephyr-devel@... Cc: devel@... Subject: [Zephyr-devel] support BT 4.2 for 51824
Hi , We have a product using nRF51824 with Zephyr. We don’t know which version of Zephyr can support BT 4.2 for 51824?
Our current version of Zephyr is: VERSION_MAJOR = 1 VERSION_MINOR = 13
Thank You, Tommy
|
|
Re: ELC-E Zephyr Multiimage BoF - Bob Build Tool
Jan Kloetzke <jan@...>
Hi Kumar,
On Wed, Oct 30, 2019 at 02:05:36AM -0500, Kumar Gala wrote: I'm currently preparing some recipes. It will post them with someOn Oct 29, 2019, at 5:08 AM, jan@... wrote:You can take a look at the open-amp sample, it creates 2 zephyr images: instructions how to build in the next days once I got it working... Regards, Jan
|
|
Re: ELC-E Zephyr Multiimage BoF - Bob Build Tool
jan@...
Hi Sebastian,
On Thu, Oct 31, 2019 at 09:17:01AM +0000, Sebastian Boe wrote: AFAICT it heavily integrates with bash making it a no-go.IMHO this depends on what Bob should be used for in the context of Zephyr. At the BoF session most people agreed that the Multiimage problem goes beyond Zephyr alone. If Bob (in the current version) is a viable alternative really depends on the use case. To what degree does Bob require Linux tools like bash?At the moment bash is still a hard requirement. There are some other unix tools required but this is going away in the future. It is not an option to introduce bash as a dependency for Windows users.You can use Bob on Windows via MSYS2, though. But I agree that this may not be an option for everybody at the moment. Can it be used without bash?This is in the works. Windows support is definitely on the agenda because there are a bunch of people that have the same requirement. The (currently stale) PR https://github.com/BobBuildTool/bob/pull/258 will be updated in the coming weeks. This requires some amount of refactoring internally so its taking some time. The idea is to make Bob independent of the acutally used scripting language. The first step is to support PowerShell on Windows and then maybe Python for cross-platform scripts. Regards, Jan ________________________________________
|
|
Re: ELC-E Zephyr Multiimage BoF - Bob Build Tool
Sebastian Boe
AFAICT it heavily integrates with bash making it a no-go.
________________________________________ From: devel@... <devel@...> on behalf of Sebastian Boe via Lists.Zephyrproject.Org <Sebastian.Boe=nordicsemi.no@...> Sent: Thursday, October 31, 2019 9:57 AM To: jan@...; kumar.gala@... Cc: devel@... Subject: Re: [Zephyr-devel] ELC-E Zephyr Multiimage BoF - Bob Build Tool To what degree does Bob require Linux tools like bash? It is not an option to introduce bash as a dependency for Windows users. Can it be used without bash? ________________________________________ From: devel@... <devel@...> on behalf of Kumar Gala via Lists.Zephyrproject.Org <kumar.gala=linaro.org@...> Sent: Wednesday, October 30, 2019 8:05 AM To: jan@... Cc: devel@... Subject: Re: [Zephyr-devel] ELC-E Zephyr Multiimage BoF - Bob Build Tool On Oct 29, 2019, at 5:08 AM, jan@... wrote:You can take a look at the open-amp sample, it creates 2 zephyr images: https://github.com/zephyrproject-rtos/zephyr/tree/master/samples/subsys/ipc/openamp - k
|
|
Re: ELC-E Zephyr Multiimage BoF - Bob Build Tool
Sebastian Boe
To what degree does Bob require Linux tools like bash?
It is not an option to introduce bash as a dependency for Windows users. Can it be used without bash? ________________________________________ From: devel@... <devel@...> on behalf of Kumar Gala via Lists.Zephyrproject.Org <kumar.gala=linaro.org@...> Sent: Wednesday, October 30, 2019 8:05 AM To: jan@... Cc: devel@... Subject: Re: [Zephyr-devel] ELC-E Zephyr Multiimage BoF - Bob Build Tool On Oct 29, 2019, at 5:08 AM, jan@... wrote:You can take a look at the open-amp sample, it creates 2 zephyr images: https://github.com/zephyrproject-rtos/zephyr/tree/master/samples/subsys/ipc/openamp - k
|
|
support BT 4.2 for 51824
Tommy Lin (林志聰) <Tommy.Lin@...>
Hi , We have a product using nRF51824 with Zephyr. We don’t know which version of Zephyr can support BT 4.2 for 51824?
Our current version of Zephyr is: VERSION_MAJOR = 1 VERSION_MINOR = 13
Thank You, Tommy
|
|