|
port runtimeio bootloader to x86
Hi
How can I build bootloader and zephyr to flash on x86 board (i.e. Arduino_101) ? Can someone point me to link how can to build it ? It will help me to port bootloader.
Any pointers how
Hi
How can I build bootloader and zephyr to flash on x86 board (i.e. Arduino_101) ? Can someone point me to link how can to build it ? It will help me to port bootloader.
Any pointers how
|
By
Vara, Punit <punit.vara@...>
·
#178
·
|
|
Daily Gerrit Digest
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11807 : net: nbuf: Print more info when trying double free net_buf
- https://gerrit.zephyrproject.org/r/11813 : Bluetooth: samples: Add
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11807 : net: nbuf: Print more info when trying double free net_buf
- https://gerrit.zephyrproject.org/r/11813 : Bluetooth: samples: Add
|
By
donotreply@...
·
#175
·
|
|
Daily Gerrit Digest
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11756 : nrf_rtc_timer: clear events and counter when disabling sys_clock
- https://gerrit.zephyrproject.org/r/11754 : samples: drivers:
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11756 : nrf_rtc_timer: clear events and counter when disabling sys_clock
- https://gerrit.zephyrproject.org/r/11754 : samples: drivers:
|
By
donotreply@...
·
#174
·
|
|
Re: Adding support for CC2650 SoC
You are correct. What I meant is that my UART test fails in part because, indeed, the
IMAGE_VALID field was not set to 0. I have now configured the CCFG in the init() function
of the SoC, in
You are correct. What I meant is that my UART test fails in part because, indeed, the
IMAGE_VALID field was not set to 0. I have now configured the CCFG in the init() function
of the SoC, in
|
By
Geoffrey LE GOURRIEREC <geoffrey.legourrierec@...>
·
#173
·
|
|
Daily Gerrit Digest
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11671 : Bluetooth: GATT: Add bt_gatt_get_mtu
- https://gerrit.zephyrproject.org/r/11669 : Bluetooth: HFP HF: Support to send hf AT
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11671 : Bluetooth: GATT: Add bt_gatt_get_mtu
- https://gerrit.zephyrproject.org/r/11669 : Bluetooth: HFP HF: Support to send hf AT
|
By
donotreply@...
·
#172
·
|
|
Re: Adding support for CC2650 SoC
Hi Tidy,
I am currently doing a basic port in order to submit a patch as quickly as possible;
I just started testing the UART driver and am still trying to debug it.
I had failed to notice that the
Hi Tidy,
I am currently doing a basic port in order to submit a patch as quickly as possible;
I just started testing the UART driver and am still trying to debug it.
I had failed to notice that the
|
By
Geoffrey LE GOURRIEREC <geoffrey.legourrierec@...>
·
#171
·
|
|
Daily Gerrit Digest
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11638 : net/dns: Remove outdated README file
- https://gerrit.zephyrproject.org/r/11637 : olimexino_stm32: provide button and leds for
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11638 : net/dns: Remove outdated README file
- https://gerrit.zephyrproject.org/r/11637 : olimexino_stm32: provide button and leds for
|
By
donotreply@...
·
#170
·
|
|
Re: Adding support for CC2650 SoC
Hi Geoffery,
Have you began to work on cc2650? I'd like to add support for cc2538, but have a question
on the linker script. Unlike other soc, cc2538 and cc2650 have a Customer
Hi Geoffery,
Have you began to work on cc2650? I'd like to add support for cc2538, but have a question
on the linker script. Unlike other soc, cc2538 and cc2650 have a Customer
|
By
Tidy(ChunHua) Jiang <tidyjiang@...>
·
#169
·
|
|
Daily Gerrit Digest
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11632 : drivers: serial: nrf5: Fix system off pin configuration
- https://gerrit.zephyrproject.org/r/11624 : doc: fix glaring typo in
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11632 : drivers: serial: nrf5: Fix system off pin configuration
- https://gerrit.zephyrproject.org/r/11624 : doc: fix glaring typo in
|
By
donotreply@...
·
#168
·
|
|
Daily Gerrit Digest
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11618 : net: nbuf: Pass ll_reserve when creating TX buffer
- https://gerrit.zephyrproject.org/r/11619 : arm: HAL Makefile modification
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11618 : net: nbuf: Pass ll_reserve when creating TX buffer
- https://gerrit.zephyrproject.org/r/11619 : arm: HAL Makefile modification
|
By
donotreply@...
·
#167
·
|
|
Re: dhcp integration into the platform
As long as all apps with static IPv4 addresses call net_if_ipv4_addr_add().
So, yes, that should work!
Thanks
<marcus.shawcroft@...> wrote:
As long as all apps with static IPv4 addresses call net_if_ipv4_addr_add().
So, yes, that should work!
Thanks
<marcus.shawcroft@...> wrote:
|
By
Gil Pitney
·
#166
·
|
|
Re: dhcp integration into the platform
An interface always gets an address, hence I think that for both
static and DHCP cases the following would work:
<wait on semaphore signaled by a NET_EVENT_IPV4_ADDR_ADD callback >
Cheers
/Marcus
An interface always gets an address, hence I think that for both
static and DHCP cases the following would work:
<wait on semaphore signaled by a NET_EVENT_IPV4_ADDR_ADD callback >
Cheers
/Marcus
|
By
Marcus Shawcroft <marcus.shawcroft@...>
·
#165
·
|
|
Re: dhcp integration into the platform
Anticipating application initialization code like this:
#ifdef CONFIG_NET_DHCPV4
<wait on semaphore signaled by a NET_DHCP_IPV4_ADDR_ACQUIRED callback >
#else
<use pre-configured static ip
Anticipating application initialization code like this:
#ifdef CONFIG_NET_DHCPV4
<wait on semaphore signaled by a NET_DHCP_IPV4_ADDR_ACQUIRED callback >
#else
<use pre-configured static ip
|
By
Gil Pitney
·
#164
·
|
|
Re: dhcp integration into the platform
Hi
Is it important to distinguish how the address was acquired?
/Marcus
Hi
Is it important to distinguish how the address was acquired?
/Marcus
|
By
Marcus Shawcroft <marcus.shawcroft@...>
·
#163
·
|
|
Re: dhcp integration into the platform
+1.
For example, echo_client application starts DHCP (if configured), but
does not wait for the IPv4 address to be acquired before proceeding
(and so uses an incorrect static IP address
+1.
For example, echo_client application starts DHCP (if configured), but
does not wait for the IPv4 address to be acquired before proceeding
(and so uses an incorrect static IP address
|
By
Gil Pitney
·
#162
·
|
|
Re: Fibers Become Unrunnable in Nanokernel
Sorry, I did not have much time to look at this. But yes, this looks
indeed like a problem even in the pre-unified kernel (per-1.6).
Sorry, I did not have much time to look at this. But yes, this looks
indeed like a problem even in the pre-unified kernel (per-1.6).
|
By
Benjamin Walsh <benjamin.walsh@...>
·
#161
·
|
|
Daily Gerrit Digest
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11564 : Revert "tests/crypto: Update testcase.ini to build on more platforms"
- https://gerrit.zephyrproject.org/r/11562 : Revert
NEW within last 24 hours:
- https://gerrit.zephyrproject.org/r/11564 : Revert "tests/crypto: Update testcase.ini to build on more platforms"
- https://gerrit.zephyrproject.org/r/11562 : Revert
|
By
donotreply@...
·
#160
·
|
|
Re: Running echo_server on qemu_cortex_m3
Hi,
indeed –q option doesn’t work on my machine.
When running nc with echo and pipe nc doesn’t wait but when starting nc and then typing text it does wait.
But… I would like to send (and
Hi,
indeed –q option doesn’t work on my machine.
When running nc with echo and pipe nc doesn’t wait but when starting nc and then typing text it does wait.
But… I would like to send (and
|
By
Goldman, Michael <michael.goldman@...>
·
#159
·
|
|
Re: Fibers Become Unrunnable in Nanokernel
Ben,
Just to update you and the mailing list; I think the issue is one you solved for 1.6. However, its not tracked on JIRA or in the release notes so I didn't realize such a critical bug was not
Ben,
Just to update you and the mailing list; I think the issue is one you solved for 1.6. However, its not tracked on JIRA or in the release notes so I didn't realize such a critical bug was not
|
By
Michael Rosen
·
#158
·
|
|
Re: ARM HW timer config
There is a global variable sys_clock_hw_cycles_per_tick which is set
in kernel/sys_clock.c from CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, and is
later used in cortex_m_systick.c.
Looks like TI CC2560 runs
There is a global variable sys_clock_hw_cycles_per_tick which is set
in kernel/sys_clock.c from CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, and is
later used in cortex_m_systick.c.
Looks like TI CC2560 runs
|
By
Gil Pitney
·
#157
·
|