|
Zephyr File System Not Working
Hi,
I'm having problems with Zephyr's file system. I am building on the board qemu_cortex_m3 on Linux. I'm getting the following error when I'm building:
Any help would be much appreciated. Thank you.
Hi,
I'm having problems with Zephyr's file system. I am building on the board qemu_cortex_m3 on Linux. I'm getting the following error when I'm building:
Any help would be much appreciated. Thank you.
|
By
Yie
·
#1043
·
|
|
Re: Is it possible to have two processes communicate in ARM Qemu?
Hi,
You can just change it whatever you like it. In our case btproxy creates
/tmp/bt-server-bredr and qemu connects to it and present to guest OS as
a serial device.
Best regards
Andrei Emeltchenko
Hi,
You can just change it whatever you like it. In our case btproxy creates
/tmp/bt-server-bredr and qemu connects to it and present to guest OS as
a serial device.
Best regards
Andrei Emeltchenko
|
By
Andrei
·
#1042
·
|
|
Re: How to reduce footprint and size of applications in Zephyr
Hi Yie,
That seems really weird. Could you attach the output of ram_report and rom_report in a pastebin/gist/attachment?
And if that's not a problem, please provide your .config file. You can find it
Hi Yie,
That seems really weird. Could you attach the output of ram_report and rom_report in a pastebin/gist/attachment?
And if that's not a problem, please provide your .config file. You can find it
|
By
Thiago Silveira
·
#1041
·
|
|
Re: How to include C library that is not in Zephyr
Hi Hui,
Newlib is included in zephyr. To enable newlib, just add CONFIG_NEWLI_LIBC=y to prj.conf file. The conf file can be found in the same directory that your makefile is. Then your zephyr
Hi Hui,
Newlib is included in zephyr. To enable newlib, just add CONFIG_NEWLI_LIBC=y to prj.conf file. The conf file can be found in the same directory that your makefile is. Then your zephyr
|
By
Jie Zhou <zhoujie@...>
·
#1040
·
|
|
How to include C library that is not in Zephyr
Hi,
Is there a way to include C libraries that are not in Zephyr e.g. <unistd.h>?
Cheers.
Hi,
Is there a way to include C libraries that are not in Zephyr e.g. <unistd.h>?
Cheers.
|
By
Yie
·
#1039
·
|
|
Re: Is it possible to have two processes communicate in ARM Qemu?
Hi Andrei,
Thanks for your reply. Are there any other QEMU_EXTRA_FLAGS that allows applications to communicate with one another without using bluetooth? Like named pipes in C?
Cheers.
Hi Andrei,
Thanks for your reply. Are there any other QEMU_EXTRA_FLAGS that allows applications to communicate with one another without using bluetooth? Like named pipes in C?
Cheers.
|
By
Yie
·
#1038
·
|
|
Re: flashing tinytile
Hi Tamra,
Flash sample/synchronization/ application you will be able to see the prints. Flashing via dfu-util for tinytile works fine. After flashing "hello world" sample application ,a reset is
Hi Tamra,
Flash sample/synchronization/ application you will be able to see the prints. Flashing via dfu-util for tinytile works fine. After flashing "hello world" sample application ,a reset is
|
By
Dharmappa, Savinay <savinay.dharmappa@...>
·
#1037
·
|
|
Re: flash tinytile
Hi Tamra,
I don’t have a tinytile at hand, but you might want to try the following command:
ZEPHYR_FLASH_OVER_DFU=y make BOARD=tinytile flash
You will find more information about
Hi Tamra,
I don’t have a tinytile at hand, but you might want to try the following command:
ZEPHYR_FLASH_OVER_DFU=y make BOARD=tinytile flash
You will find more information about
|
By
Patrice Buriez
·
#1036
·
|
|
Re: Is it possible to have two processes communicate in ARM Qemu?
Hi,
We use QEMU_EXTRA_FLAGS for providing this parameter for QEMU, for
example in bluetooth we may run btproxy on Linux host and
QEMU_EXTRA_FLAGS like following:
QEMU_EXTRA_FLAGS = -serial
Hi,
We use QEMU_EXTRA_FLAGS for providing this parameter for QEMU, for
example in bluetooth we may run btproxy on Linux host and
QEMU_EXTRA_FLAGS like following:
QEMU_EXTRA_FLAGS = -serial
|
By
Andrei
·
#1035
·
|
|
Is it possible to have two processes communicate in ARM Qemu?
Hi,
Is there an inter-process communication functionality on Zephyr running on Linux for Qemu?
I have an application on Zephyr that gets data from an external source. However, since I do not have the
Hi,
Is there an inter-process communication functionality on Zephyr running on Linux for Qemu?
I have an application on Zephyr that gets data from an external source. However, since I do not have the
|
By
Yie
·
#1034
·
|
|
flash tinytile
Hello all,
I am trying to flash my tinytile. When I use the commands make BOARD=tinytile flash or make flash or the dfu-util command, I get the errors below. Tinytile does not have a jtag connection
Hello all,
I am trying to flash my tinytile. When I use the commands make BOARD=tinytile flash or make flash or the dfu-util command, I get the errors below. Tinytile does not have a jtag connection
|
By
Tamra Oyama <tamrako@...>
·
#1033
·
|
|
Re: How to reduce footprint and size of applications in Zephyr
I see. That makes a lot of sense. Thank you Maciek!
I have another question, if you dont mind.
I have an app that's taking about ~5MB of RAM and ~5.6MB of ROM judging from the 'ram_report' and
I see. That makes a lot of sense. Thank you Maciek!
I have another question, if you dont mind.
I have an app that's taking about ~5MB of RAM and ~5.6MB of ROM judging from the 'ram_report' and
|
By
Yie
·
#1032
·
|
|
Re: How to reduce footprint and size of applications in Zephyr
qemu-system-arm is just a VM that can emulate, among others, Cortex-M
MCUs. `qemu_cortext_m3` board is in fact emulated by qemu. Memory
usage of a running Qemu process does not directly (or
qemu-system-arm is just a VM that can emulate, among others, Cortex-M
MCUs. `qemu_cortext_m3` board is in fact emulated by qemu. Memory
usage of a running Qemu process does not directly (or
|
By
Maciek Borzecki <maciek.borzecki@...>
·
#1031
·
|
|
Re: How to reduce footprint and size of applications in Zephyr
Hi Thiago,
Thank you so much for the reply. I am running Zephyr on Linux and building the hello_world app on ARM using qemu_cortex_m3.
I've got the numbers from the following:
The 8MB of memory is
Hi Thiago,
Thank you so much for the reply. I am running Zephyr on Linux and building the hello_world app on ARM using qemu_cortex_m3.
I've got the numbers from the following:
The 8MB of memory is
|
By
Yie
·
#1030
·
|
|
Re: How to reduce footprint and size of applications in Zephyr
Hi Yie,
That definitely isn't right. In which environment are you running Zephyr, and how are you measuring this?
Try 'make rom_report' and 'make ram_report' to get a nice report of how much each
Hi Yie,
That definitely isn't right. In which environment are you running Zephyr, and how are you measuring this?
Try 'make rom_report' and 'make ram_report' to get a nice report of how much each
|
By
Thiago Silveira
·
#1029
·
|
|
Re: RFC: Stopping Zephyr networking from being painful by enabling error logging by default
Hello David,
I appreciate the detailed response, with many points coinciding with
what I wrote previously. And my hypothesis that many of these points
would apply not just to "hobbyist" usage, but
Hello David,
I appreciate the detailed response, with many points coinciding with
what I wrote previously. And my hypothesis that many of these points
would apply not just to "hobbyist" usage, but
|
By
Paul Sokolovsky
·
#1028
·
|
|
How to reduce footprint and size of applications in Zephyr
Hi,
I read that Zephyr allows small footprint of a few KBs. However, the sample hello world application already takes up 8MB of memory and has a size of 3.8MB. I am not sure if I am running this
Hi,
I read that Zephyr allows small footprint of a few KBs. However, the sample hello world application already takes up 8MB of memory and has a size of 3.8MB. I am not sure if I am running this
|
By
Yie
·
#1027
·
|
|
HTTP Request Timeout Not Working
Hi,
I am currently running a HTTP client in QEMU_cortex_m3 and I was trying to set the timeout for the http_client_send_req(..) function and it doesn't seem to work.
It still does not return
Hi,
I am currently running a HTTP client in QEMU_cortex_m3 and I was trying to set the timeout for the http_client_send_req(..) function and it doesn't seem to work.
It still does not return
|
By
Yie
·
#1026
·
|
|
Zephyr SDK issue tracking moved to github
Hi,
As part of the migration to Github Issues, we moved the SDK Jira project and made the Jira project read-only. All new SDK issues should be reported to
Hi,
As part of the migration to Github Issues, we moved the SDK Jira project and made the Jira project read-only. All new SDK issues should be reported to
|
By
Nashif, Anas
·
#1025
·
|
|
Re: RFC: Stopping Zephyr networking from being painful by enabling error logging by default
I definitely think it makes sense to do this by default for our QEMU based targets, since they have lots of ram and we don't gather performance metrics for emulated targets.
Andrew
I definitely think it makes sense to do this by default for our QEMU based targets, since they have lots of ram and we don't gather performance metrics for emulated targets.
Andrew
|
By
Boie, Andrew P
·
#1024
·
|