|
port other projects to Zephyr
Hi there,
Is it possible to port FreeRTOS project to Zephyr project?
Seems like both of them works differently.
Regards,
Kay Li
Hi there,
Is it possible to port FreeRTOS project to Zephyr project?
Seems like both of them works differently.
Regards,
Kay Li
|
By
KAY LI NG <kayli0109@...>
·
#1568
·
|
|
Re: west build broken?
My bad, can you please try this revert https://github.com/zephyrproject-rtos/zephyr/pull/17549 ?
Marc
From:<users@...> on behalf of Lawrence King <lawrence.king@...>
Date: Monday, 15 July 2019
My bad, can you please try this revert https://github.com/zephyrproject-rtos/zephyr/pull/17549 ?
Marc
From:<users@...> on behalf of Lawrence King <lawrence.king@...>
Date: Monday, 15 July 2019
|
By
Marc Herbert
·
#1567
·
|
|
west build broken?
Dear All:
Today I did a ‘west update’, and a ‘git pull’ in the zephyr directory.
After fixing the things in my code that have become deprecated I have found an issue with west that can
Dear All:
Today I did a ‘west update’, and a ‘git pull’ in the zephyr directory.
After fixing the things in my code that have become deprecated I have found an issue with west that can
|
By
Lawrence King
·
#1566
·
|
|
Re: #hci_uart with board nrf52_pca10040 build fail
#hci_uart
Hi there,
You have several options:
Pass “-p auto” to west so that it cleans the build folder for you
Add “pristine = auto” to your ~/.westconfig
Delete the build/ folder manually
Hi there,
You have several options:
Pass “-p auto” to west so that it cleans the build folder for you
Add “pristine = auto” to your ~/.westconfig
Delete the build/ folder manually
|
By
Carles Cufi
·
#1565
·
|
|
Re: DTLS over CoAP for the Zephyr project
Hi Nikos,
Copying a couple of people that might not be on this mailing list and may be able to help you.
Carles
Hi Nikos,
Copying a couple of people that might not be on this mailing list and may be able to help you.
Carles
|
By
Carles Cufi
·
#1564
·
|
|
Re: flag for board type issue
If you switch to using west to build instead of invoking cmake and ninja directly, then you can add:
[build]
pristine = auto
in your ~/.westconfig and then west will clean the build folder
If you switch to using west to build instead of invoking cmake and ninja directly, then you can add:
[build]
pristine = auto
in your ~/.westconfig and then west will clean the build folder
|
By
Carles Cufi
·
#1563
·
|
|
Re: DTC version unsupported error
#west
Hi Eric,
Can you try replacing $HOME in the ZEPHYR_SDK_INSTALL_DIR with the full path? I know I’ve seen issues with that in the past.
For example in my case I use:
Hi Eric,
Can you try replacing $HOME in the ZEPHYR_SDK_INSTALL_DIR with the full path? I know I’ve seen issues with that in the past.
For example in my case I use:
|
By
Carles Cufi
·
#1562
·
|
|
Re: cant perform west init
Hi Kay,
Can you make sure you have the latest colorama version?
pip3 install --user -U colorama
Carles
Hi Kay,
Can you make sure you have the latest colorama version?
pip3 install --user -U colorama
Carles
|
By
Carles Cufi
·
#1561
·
|
|
Re: #hci_uart with board nrf52_pca10040 build fail
#hci_uart
Hi Deeve,
I use the following steps (when not using west):
$ cd ${ZEPHYR_BASE}
$ mkdir -p build/hci_uart
$ cd build/hci_uart
$ cmake -GNinja -DBOARD=nrf52_pca10040
Hi Deeve,
I use the following steps (when not using west):
$ cd ${ZEPHYR_BASE}
$ mkdir -p build/hci_uart
$ cd build/hci_uart
$ cmake -GNinja -DBOARD=nrf52_pca10040
|
By
Chettimada, Vinayak Kariappa <vinayak.kariappa.chettimada@...>
·
#1560
·
|
|
#hci_uart with board nrf52_pca10040 build fail
#hci_uart
can anyone help me:
I get the latest zephyr code, but build fail:
deeve@debian:~/zephyrproject/zephyr$ git log
commit 9fac66ca540a7c1221d17e20ac903a647b1a0184
Author: Nicolas Pitre <npitre@...>
Date:
can anyone help me:
I get the latest zephyr code, but build fail:
deeve@debian:~/zephyrproject/zephyr$ git log
commit 9fac66ca540a7c1221d17e20ac903a647b1a0184
Author: Nicolas Pitre <npitre@...>
Date:
|
By
deeve ma
·
#1559
·
|
|
Re: Mesh publish message to proxy node
Hi Johan,
I have noticed the following and I think this is not expected behavior.
I have a mesh network with two nodes with addresses 0x0100 and 0x0106. I have connected to
Hi Johan,
I have noticed the following and I think this is not expected behavior.
I have a mesh network with two nodes with addresses 0x0100 and 0x0106. I have connected to
|
By
Venkat Rao Vallapaneni <vallapaneni@...>
·
#1558
·
|
|
Re: DTLS over CoAP for the Zephyr project
Any ideas guys?
By
Nikos Karamolegkos
·
#1557
·
|
|
Summer 2019 Zephyr Project Newsletter
See what's new in the Zephyr Project.
See what's new in the Zephyr Project.
|
By
Zephyr Project <taldrich@...>
·
#1556
·
|
|
Re: flag for board type issue
I'm afraid that's the way CMake's cache works:
https://stackoverflow.com/questions/26145865/confused-about-cmakes-cached-variable-setting-priority
There are at least two "workarounds":
I'm afraid that's the way CMake's cache works:
https://stackoverflow.com/questions/26145865/confused-about-cmakes-cached-variable-setting-priority
There are at least two "workarounds":
|
By
Marc Herbert
·
#1555
·
|
|
flag for board type issue
Hi there,
I have a question.
I specified the flag for board type to build, it works.
But when i specify the flag for another board type, it still targets to the previous board.
$ cmake-Bbuild -GNinja
Hi there,
I have a question.
I specified the flag for board type to build, it works.
But when i specify the flag for another board type, it still targets to the previous board.
$ cmake-Bbuild -GNinja
|
By
KAY LI NG <kayli0109@...>
·
#1554
·
|
|
Re: BLE mesh message advertising interval
Hi,
I also have a follow-up question, more related to the specification. This is regarding Publish Retransmit Count. I suppose this increases the number of mesh messages advertised. Can
Hi,
I also have a follow-up question, more related to the specification. This is regarding Publish Retransmit Count. I suppose this increases the number of mesh messages advertised. Can
|
By
Venkat Rao Vallapaneni <vallapaneni@...>
·
#1553
·
|
|
BLE mesh message advertising interval
Hi,
I am trying BLE mesh on-off app on nrf52840 USB dongle. I have provisioned two devices.
After provisioning, I have connected from my android device to node1 and sending
Hi,
I am trying BLE mesh on-off app on nrf52840 USB dongle. I have provisioned two devices.
After provisioning, I have connected from my android device to node1 and sending
|
By
Venkat Rao Vallapaneni <vallapaneni@...>
·
#1552
·
|
|
DTC version unsupported error
#west
On a new Ubuntu install, I'm having this issue with Zephyr using West. It's also referenced in this issue, but the fix mentioned there didn't work for
On a new Ubuntu install, I'm having this issue with Zephyr using West. It's also referenced in this issue, but the fix mentioned there didn't work for
|
By
Eric
·
#1551
·
|
|
Re: [EXT] [Zephyr-users] UART serial and CDC-ACM on Zephyr
#bt
#hc5
Thanks Andrei
By
gnfranco@...
·
#1550
·
|
|
Zephyr kernel compatibility with POSIX standard
Hi,
we are interested to know the compatibility degree of Zephyr kernel with the POSIX standard.
For instance, could we execute a C program POSIX compliant, written for an x86 linux kernel, on a
Hi,
we are interested to know the compatibility degree of Zephyr kernel with the POSIX standard.
For instance, could we execute a C program POSIX compliant, written for an x86 linux kernel, on a
|
By
Gabriele Morgante
·
#1549
·
|