|
Re: Kconfig changes on master
Hi there,
CMake is the build system, Kconfig is the configuration system. Kconfig is run by CMake as one of the first things it does in order to figure out what needs to be built and how.
More
Hi there,
CMake is the build system, Kconfig is the configuration system. Kconfig is run by CMake as one of the first things it does in order to figure out what needs to be built and how.
More
|
By
Carles Cufi
·
#2163
·
|
|
Re: Kconfig changes on master
Hi,
What is the relationship cmake and kconfig ? both of them can be used to configure Zephyr ?
Are they alternative or dependent?
Thanks.
2018-05-08 4:02 GMT+08:00 Cufi, Carles <carles.cufi@...>:
Hi,
What is the relationship cmake and kconfig ? both of them can be used to configure Zephyr ?
Are they alternative or dependent?
Thanks.
2018-05-08 4:02 GMT+08:00 Cufi, Carles <carles.cufi@...>:
|
By
jack ma
·
#2162
·
|
|
Re: Extending Error Codes
By
Zięcik, Piotr <piotr.ziecik@...>
·
#2161
·
|
|
Re: Usage of generated dts *_GPIO_FLAGS
Hi Erwan,
I agree with you about using a more generic name (FLAGS). So basically we will need to update the "samples/basic/button/src/main.c" (SW0_GPIO_INT_CONF ->SW0_GPIO_FLAGS) application and move
Hi Erwan,
I agree with you about using a more generic name (FLAGS). So basically we will need to update the "samples/basic/button/src/main.c" (SW0_GPIO_INT_CONF ->SW0_GPIO_FLAGS) application and move
|
By
Diego Sueiro
·
#2160
·
|
|
Re: k_msgq_get_attrs declared 'static' but never defined???
Although you can use the "clean" target, try using "git clean -xfd" in the build directory instead of "rm".
It's less prone to errors: it will only remove files not tracked by Git, and will remove
Although you can use the "clean" target, try using "git clean -xfd" in the build directory instead of "rm".
It's less prone to errors: it will only remove files not tracked by Git, and will remove
|
By
Leandro Pereira
·
#2159
·
|
|
Re: k_msgq_get_attrs declared 'static' but never defined???
Yes, that was it. I was being stupid and using ‘rm -rf *.*’ and not checking that the cmake files had been cleaned up… ‘rm -rf *’ does the job as does ‘ninja clean’
(back to my linux
Yes, that was it. I was being stupid and using ‘rm -rf *.*’ and not checking that the cmake files had been cleaned up… ‘rm -rf *’ does the job as does ‘ninja clean’
(back to my linux
|
By
David Leach
·
#2158
·
|
|
Re: k_msgq_get_attrs declared 'static' but never defined???
I can't reproduce this.
Does doing a clean build help?
Is this sample built by our CI?
Andrew
I can't reproduce this.
Does doing a clean build help?
Is this sample built by our CI?
Andrew
|
By
Boie, Andrew P
·
#2157
·
|
|
Kconfig changes on master
Hi all,
We have just merged PR #7293 [1], and this has a few implications for developers and users. With the end goal being removing the dependency to the C implementation of the different Kconfig
Hi all,
We have just merged PR #7293 [1], and this has a few implications for developers and users. With the end goal being removing the dependency to the C implementation of the different Kconfig
|
By
Carles Cufi
·
#2156
·
|
|
Re: problems building a BME680 app: zephyr_prebuilt.elf uses VFP register arguments ....
On the same note, and to add to what Sebastian said, you should also know that you can change the floating point ABI in Zephyr by setting:
CONFIG_FP_SOFTABI=y
or
CONFIG_FP_HARDABI=y
in your
On the same note, and to add to what Sebastian said, you should also know that you can change the floating point ABI in Zephyr by setting:
CONFIG_FP_SOFTABI=y
or
CONFIG_FP_HARDABI=y
in your
|
By
Carles Cufi
·
#2155
·
|
|
Re: Strange Codecov info
Hi,
That line keeps coming in and out of coverage every now and then.
But I do not have a good explanation as to why.
The issue we had fixed with timing was due to sanitycheck being responsible
Hi,
That line keeps coming in and out of coverage every now and then.
But I do not have a good explanation as to why.
The issue we had fixed with timing was due to sanitycheck being responsible
|
By
Alberto Escolar Piedras <ALPI@...>
·
#2154
·
|
|
Re: problems building a BME680 app: zephyr_prebuilt.elf uses VFP register arguments ....
Hi,
what the toolchain is saying is that it can't link
libgcc.a into zephyr_prebuilt.elf because they have an incompatible floating point ABI.
Perhaps
c:/program files (x86)/gnu tools arm
Hi,
what the toolchain is saying is that it can't link
libgcc.a into zephyr_prebuilt.elf because they have an incompatible floating point ABI.
Perhaps
c:/program files (x86)/gnu tools arm
|
By
Sebastian Boe
·
#2153
·
|
|
problems building a BME680 app: zephyr_prebuilt.elf uses VFP register arguments ....
Hi All,
I am having problems porting a BME680 app to Zephyr. This app uses a pre-compiled library (libalgobsec.a) provided by Bosch.
It builds and runs correctly on mynewt (using the exact same tool
Hi All,
I am having problems porting a BME680 app to Zephyr. This app uses a pre-compiled library (libalgobsec.a) provided by Bosch.
It builds and runs correctly on mynewt (using the exact same tool
|
By
Abderrezak Mekkaoui
·
#2152
·
|
|
Re: Strange Codecov info
Alberto might shed some light, but this is a timing issue that we keep seeing. We probably want to ignore this like we did with other spots in the native posix code.
This can be safely be
Alberto might shed some light, but this is a timing issue that we keep seeing. We probably want to ignore this like we did with other spots in the native posix code.
This can be safely be
|
By
Nashif, Anas
·
#2151
·
|
|
Strange Codecov info
In https://github.com/zephyrproject-rtos/zephyr/pull/7352, I am seeing an unusual Codecov report. Although my change only affects a few files in the documentation, the Codecov report is showing an
In https://github.com/zephyrproject-rtos/zephyr/pull/7352, I am seeing an unusual Codecov report. Although my change only affects a few files in the documentation, the Codecov report is showing an
|
By
David Brown
·
#2150
·
|
|
Re: fatal error: config-mini-tls1_2.h: No such file or directory
I was able to solve this problem by including in my CMakeLists.txt these lines below
zephyr_link_interface_ifdef(CONFIG_MBEDTLS mbedTLS)
zephyr_library_link_libraries_ifdef(CONFIG_MBEDTLS
I was able to solve this problem by including in my CMakeLists.txt these lines below
zephyr_link_interface_ifdef(CONFIG_MBEDTLS mbedTLS)
zephyr_library_link_libraries_ifdef(CONFIG_MBEDTLS
|
By
christian tavares
·
#2149
·
|
|
http_client_send_req doen't perform the callback function, using https support
Hello!
I'm developing a library http_client. That library needs to download a flash image on the server and install the image on board.
However, I included https support on my library and now I
Hello!
I'm developing a library http_client. That library needs to download a flash image on the server and install the image on board.
However, I included https support on my library and now I
|
By
christian tavares
·
#2148
·
|
|
Re: mbedtls problem
Hello Clemence,
Unfortunately, it's very hard to tell why a TLS client and a TLS
server have a communication problem - TLS is a complex protocol, and
there can be dozens if not hundreds ways it can
Hello Clemence,
Unfortunately, it's very hard to tell why a TLS client and a TLS
server have a communication problem - TLS is a complex protocol, and
there can be dozens if not hundreds ways it can
|
By
Paul Sokolovsky
·
#2147
·
|
|
mbedtls problem
Hi,
I am currently trying to integrate mbedtls to open a socket between a bord NXP FRDM-K64F (client) and a server.
But the function "mbedtls_ssl_handshake" does not work.
The client send
Hi,
I am currently trying to integrate mbedtls to open a socket between a bord NXP FRDM-K64F (client) and a server.
But the function "mbedtls_ssl_handshake" does not work.
The client send
|
By
clemence
·
#2146
·
|
|
Reminder: Zephyr API discussion weekly call tomorrow
Hi all,
Tomorrow we will have another API discussion call. Details on how to
Hi all,
Tomorrow we will have another API discussion call. Details on how to
|
By
Carles Cufi
·
#2145
·
|
|
Re: Extending Error Codes
Hi Piotr,
By
Carles Cufi
·
#2144
·
|