|
Cpp support on Zephyr
#gettingstartedguide
Hi, You can check project: tests/application_development/cpp AFAIK it is possible to build openthread written in C++ for Zephyr if you want more complex example. Best regards Andrei Emeltchenko
Hi, You can check project: tests/application_development/cpp AFAIK it is possible to build openthread written in C++ for Zephyr if you want more complex example. Best regards Andrei Emeltchenko
|
By
Andrei
· #4961
·
|
|
Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi, Is this an upstream sample project? What command lines did you use for cmake and building the project itself? Thanks, Marti
Hi, Is this an upstream sample project? What command lines did you use for cmake and building the project itself? Thanks, Marti
|
By
...
· #5425
·
|
|
Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi Marti, I tried compiling zephyr\samples\hello_world\ project. I used camke command to compile cmake -GNinja -DBOARD=nrf52832_mdk .. Failure seen after this command itself. But when I tried compilin
Hi Marti, I tried compiling zephyr\samples\hello_world\ project. I used camke command to compile cmake -GNinja -DBOARD=nrf52832_mdk .. Failure seen after this command itself. But when I tried compilin
|
By
Balasubramanyam
· #5426
·
|
|
Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
I can't think of any reason why blinky would work, whilst hello_world would produce that error. Could you try again after deleting the build directories? It is not necessary to add --specs=nosys.specs
I can't think of any reason why blinky would work, whilst hello_world would produce that error. Could you try again after deleting the build directories? It is not necessary to add --specs=nosys.specs
|
By
Sebastian Boe
· #5427
·
|
|
Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi Team, I am just getting started with Zephyr and trying to setup development environment. I followed all the steps described to setup ARM GNU GCC toolchain and compilation ENV. After setting up ever
Hi Team, I am just getting started with Zephyr and trying to setup development environment. I followed all the steps described to setup ARM GNU GCC toolchain and compilation ENV. After setting up ever
|
By
Balasubramanyam
· #5421
·
|
|
Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi Sebastian, I tried deleting build folder and created again. Compilation successful without any issues. Issue not seen anymore Thanks, Balasubramanyam Rangineni
Hi Sebastian, I tried deleting build folder and created again. Compilation successful without any issues. Issue not seen anymore Thanks, Balasubramanyam Rangineni
|
By
Balasubramanyam
· #5428
·
|
|
FATAL ERROR: 2 The system cannot find the file specified None 2 None
#gettingstartedguide
Hi, I have followed the getting started guide and installed zephyr, GNU, and tools on a Windows 7 machine and now trying to build and flash the "hello_world" sample. I'm following the guidelines for t
Hi, I have followed the getting started guide and installed zephyr, GNU, and tools on a Windows 7 machine and now trying to build and flash the "hello_world" sample. I'm following the guidelines for t
|
By
Bo.Kragelund@...
· #5557
·
|
|
ZEPHYR_BASE environment variableIs setup
#gettingstartedguide
Hi there, I did tell you yesterday how to do that. Download Rapid Environment Editor. Add the environment variables you want with it Save Now ZEPHYR_BASE will be set automatically every time you open
Hi there, I did tell you yesterday how to do that. Download Rapid Environment Editor. Add the environment variables you want with it Save Now ZEPHYR_BASE will be set automatically every time you open
|
By
Carles Cufi
· #4870
·
|
|
ZEPHYR_BASE environment variableIs setup
#gettingstartedguide
Hi, I have to set the the ZEPHYR_BASE environment variableIs every time I creat a new command window session to compile a project. Is there any way to save the ZEPHYR_BASE environment variableIs in wi
Hi, I have to set the the ZEPHYR_BASE environment variableIs every time I creat a new command window session to compile a project. Is there any way to save the ZEPHYR_BASE environment variableIs in wi
|
By
miem@...
· #4866
·
|
|
ZEPHYR_BASE environment variableIs setup
#gettingstartedguide
I assume you are on Windows from what you say. If you have a single copy of the repo on your disk you can add ZEPHYR_BASE as a permanent environment variable. I recommend https://www.rapidee.com/en/ab
I assume you are on Windows from what you say. If you have a single copy of the repo on your disk you can add ZEPHYR_BASE as a permanent environment variable. I recommend https://www.rapidee.com/en/ab
|
By
Carles Cufi
· #4867
·
|
|
ZEPHYR_BASE environment variableIs setup
#gettingstartedguide
I added the ZEPHYR_BASE in environmental variable and it works now. Thanks.
I added the ZEPHYR_BASE in environmental variable and it works now. Thanks.
|
By
miem@...
· #4871
·
|
|
ZEPHYR_BASE environment variableIs setup
#gettingstartedguide
In Windows you can run zephyr-env.cmd to set ZEPHYR_BASE. It also has a hook to invoke your own zephyrrc.cmd which is handy for setting ZEPHYR_TOOLCHAIN_VARIANT and GCCARMEMB_TOOLCHAIN_PATH.
In Windows you can run zephyr-env.cmd to set ZEPHYR_BASE. It also has a hook to invoke your own zephyrrc.cmd which is handy for setting ZEPHYR_TOOLCHAIN_VARIANT and GCCARMEMB_TOOLCHAIN_PATH.
|
By
Maureen Helm
· #4868
·
|
|
ZEPHYR_BASE environment variableIs setup
#gettingstartedguide
Yes, I am running on windows. and I set the ZEPHYR_TOOLCHAIN_VARIANT and GCCARMEMB_TOOLCHAIN_PATH in zephyrrc.cmd but I have to run zephyrrc.cmd and zephyr-env.cmd every time I am running a new comman
Yes, I am running on windows. and I set the ZEPHYR_TOOLCHAIN_VARIANT and GCCARMEMB_TOOLCHAIN_PATH in zephyrrc.cmd but I have to run zephyrrc.cmd and zephyr-env.cmd every time I am running a new comman
|
By
miem@...
· #4869
·
|
|
Cpp support on Zephyr
#gettingstartedguide
Hi, Does anyone tried to compile a project written in C++ or knows how powerful is Zephyr in supporting C++ applications? Regards, Mina
Hi, Does anyone tried to compile a project written in C++ or knows how powerful is Zephyr in supporting C++ applications? Regards, Mina
|
By
miem@...
· #4951
·
|
|
How to update Zephyr kernel to the newest version
#gettingstartedguide
Alternatively ... sebo@mach:~/$ cd $ZEPHYR_BASE sebo@mach:~/zephyr$ git fetch --all sebo@mach:~/zephyr$ git tag --list sebo@mach:~/zephyr$ git checkout zephyr-v1.12.0 If you get an error during checko
Alternatively ... sebo@mach:~/$ cd $ZEPHYR_BASE sebo@mach:~/zephyr$ git fetch --all sebo@mach:~/zephyr$ git tag --list sebo@mach:~/zephyr$ git checkout zephyr-v1.12.0 If you get an error during checko
|
By
Sebastian Boe
· #4934
·
|
|
How to update Zephyr kernel to the newest version
#gettingstartedguide
Hi, How can I update my local zephyr project (that I have cloned from Github before) to the latest (or a defined) version? Regards, Mina
Hi, How can I update my local zephyr project (that I have cloned from Github before) to the latest (or a defined) version? Regards, Mina
|
By
miem@...
· #4932
·
|
|
How to update Zephyr kernel to the newest version
#gettingstartedguide
Hi, If you have changes or commits, then # git pull –rebase origin Or if no changes and want to have a near fresh clone then, # git fetch –all -p # git reset –hard origin/master Regards, Vinayak PS: t
Hi, If you have changes or commits, then # git pull –rebase origin Or if no changes and want to have a near fresh clone then, # git fetch –all -p # git reset –hard origin/master Regards, Vinayak PS: t
|
By
Chettimada, Vinayak Kariappa
· #4933
·
|
|
clang toolchain for zephyr doesn't failing to compile properly
#gettingstartedguide
Hi, I don't know if this is the proper place to ask technical question about zephyr but I have tried stackoverflow and started github issue with no help. I am new to zephyr so I followed the getting s
Hi, I don't know if this is the proper place to ask technical question about zephyr but I have tried stackoverflow and started github issue with no help. I am new to zephyr so I followed the getting s
|
By
...
· #6706
·
|
|
ninja guiconfig fail
#gettingstartedguide
Hi, after I building the example: samples/bluetooth/hci_uart, under the directory "build", I can run "ninja menuconfig" command successfully, but run "ninja guiconfig" failed. I have searched the zeph
Hi, after I building the example: samples/bluetooth/hci_uart, under the directory "build", I can run "ninja menuconfig" command successfully, but run "ninja guiconfig" failed. I have searched the zeph
|
By
hotkernel@...
· #6027
·
|
|
ninja guiconfig fail
#gettingstartedguide
Hi there, Can you please let us know what error you get? Also, can you give us more details including which Zephyr version (master, 1.14, etc), what Host OS (Linux, Windows, macOS) and which toolchain
Hi there, Can you please let us know what error you get? Also, can you give us more details including which Zephyr version (master, 1.14, etc), what Host OS (Linux, Windows, macOS) and which toolchain
|
By
Carles Cufi
· #6028
·
|