|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Yes, I think the SRAM mapped case should be an option, but selected by default. Anyway, something must be pushed along the STM32F0 basic support.
Neil
Yes, I think the SRAM mapped case should be an option, but selected by default. Anyway, something must be pushed along the STM32F0 basic support.
Neil
|
By
Neil Armstrong
·
#977
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi Neal,
2017-09-13 14:10 GMT+02:00 Neil Armstrong <narmstrong@...>:
There are use cases where you really do not need the dynamic updates (mine for example - updates are done by the supervising
Hi Neal,
2017-09-13 14:10 GMT+02:00 Neil Armstrong <narmstrong@...>:
There are use cases where you really do not need the dynamic updates (mine for example - updates are done by the supervising
|
By
Bobby
·
#976
·
|
|
Re: Counter API ambiguity.
As there is no response from Baohong I will assume it is relative value.
Assuming that, I have few questions about types used for functions that perform some waiting or set alarms.
Shouldn't we stay
As there is no response from Baohong I will assume it is relative value.
Assuming that, I have few questions about types used for functions that perform some waiting or set alarms.
Shouldn't we stay
|
By
Michał Kruszewski <mkru@...>
·
#975
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Exact
Yes it should, then it should disable all the dynamic update and generation of the vector table.
Exact
Yes it should, then it should disable all the dynamic update and generation of the vector table.
|
By
Neil Armstrong
·
#974
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi Neal,
I had a look at the linker script https://github.com/zephyrproject-rtos/zephyr/blob/master/include/arch/arm/cortex_m/scripts/linker.ld which is also used for STM32F0.
Transfer of the vector
Hi Neal,
I had a look at the linker script https://github.com/zephyrproject-rtos/zephyr/blob/master/include/arch/arm/cortex_m/scripts/linker.ld which is also used for STM32F0.
Transfer of the vector
|
By
Bobby
·
#973
·
|
|
link a static precompiled libray
I have to link a static precompiled library
This is my directory tree:
.
|-- MyApp
| `-- src
| `-- GUI_glue
| |-- Config
| `-- OS
|-- STemWin
| |-- inc
| `-- Lib
`--
I have to link a static precompiled library
This is my directory tree:
.
|-- MyApp
| `-- src
| `-- GUI_glue
| |-- Config
| `-- OS
|-- STemWin
| |-- inc
| `-- Lib
`--
|
By
Massimiliano Cialdi
·
#972
·
|
|
Port of NFFS to Zephyr
Hi,
I created a port of NFFS (Newtron Flash File System) for Zephyr - see
https://github.com/zephyrproject-rtos/zephyr/pull/1288.
NFFS is the filesystem created and used by Apache Mynewt
Hi,
I created a port of NFFS (Newtron Flash File System) for Zephyr - see
https://github.com/zephyrproject-rtos/zephyr/pull/1288.
NFFS is the filesystem created and used by Apache Mynewt
|
By
Andrzej Kaczmarek
·
#971
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi,
Since Cortex-M0 cannot relocate the vector base with a processor register, the vector must be moved.
Yes you can map the first kbytes of the flash to the first 32k bytes of 0, but you won't tun
Hi,
Since Cortex-M0 cannot relocate the vector base with a processor register, the vector must be moved.
Yes you can map the first kbytes of the flash to the first 32k bytes of 0, but you won't tun
|
By
Neil Armstrong
·
#970
·
|
|
Zephyr SDK 0.9.2-rc4 tagged
Hi, a new release candidate of the SDK has been released at:
https://github.com/zephyrproject-rtos/meta-zephyr-sdk/releases/tag/0.9.2-rc4
This is has a fix for openocd which did not work
Hi, a new release candidate of the SDK has been released at:
https://github.com/zephyrproject-rtos/meta-zephyr-sdk/releases/tag/0.9.2-rc4
This is has a fix for openocd which did not work
|
By
Nashif, Anas
·
#969
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi Neil,
the patch forces the STM32F0 vector table to be in SRAM as CONFIG_FLASH_BASE_ADDRESS and CONFIG_SRAM_BASE_ADDRESS are not 0.
I would appreciate to save precious SRAM and do the remap only if
Hi Neil,
the patch forces the STM32F0 vector table to be in SRAM as CONFIG_FLASH_BASE_ADDRESS and CONFIG_SRAM_BASE_ADDRESS are not 0.
I would appreciate to save precious SRAM and do the remap only if
|
By
Bobby
·
#968
·
|
|
Question regarding Zephyr OS
I am currently trying to build an application on Zephyr and my application requires the current time and date. I realized I cannot call functions from the time.h C library since the time.h in the
I am currently trying to build an application on Zephyr and my application requires the current time and date. I realized I cannot call functions from the time.h C library since the time.h in the
|
By
Yie
·
#967
·
|
|
Re: RFC: Watchdog API update.
Second update of Watchdog API RFC.
https://github.com/zephyrproject-rtos/zephyr/pull/1260
Michał Kruszewski
Sent with ProtonMail Secure Email.
Second update of Watchdog API RFC.
https://github.com/zephyrproject-rtos/zephyr/pull/1260
Michał Kruszewski
Sent with ProtonMail Secure Email.
|
By
Michał Kruszewski <mkru@...>
·
#966
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi Maciej, Bobby,
Could test the following patch ?
If it works, it's the correct way to handle this situation, and should be included in the stm32f0 support
Hi Maciej, Bobby,
Could test the following patch ?
If it works, it's the correct way to handle this situation, and should be included in the stm32f0 support
|
By
Neil Armstrong
·
#965
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi All,
On STM32F0 SoCs, the forst 32K cam be remapped to an internal SRAM, but this must be done *before* the relocate_vector_table() call.
I will push a patch to add a relocate hook for Cortex-M0
Hi All,
On STM32F0 SoCs, the forst 32K cam be remapped to an internal SRAM, but this must be done *before* the relocate_vector_table() call.
I will push a patch to add a relocate hook for Cortex-M0
|
By
Neil Armstrong
·
#964
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi All,
I have some concern about this commit eb48a0a73c11c2a9cd4c3c91864ca4e0cf52dae8 (arm: armv6-m: Support relocating vector table).
On STM32, flash is not at address 0, but can be relocated like
Hi All,
I have some concern about this commit eb48a0a73c11c2a9cd4c3c91864ca4e0cf52dae8 (arm: armv6-m: Support relocating vector table).
On STM32, flash is not at address 0, but can be relocated like
|
By
Neil Armstrong
·
#963
·
|
|
adding thread awareness to pyocd
For those of you using pyocd to debug, please give the following PR a try:
https://github.com/mbedmicro/pyOCD/pull/333
You’ll need to build pyocd from source, which isn’t too hard, and enable
For those of you using pyocd to debug, please give the following PR a try:
https://github.com/mbedmicro/pyOCD/pull/333
You’ll need to build pyocd from source, which isn’t too hard, and enable
|
By
Maureen Helm
·
#962
·
|
|
Re: new host system dependency: gperf
This was done already
By
Boie, Andrew P
·
#961
·
|
|
Re: new host system dependency: gperf
Hi Andrew,
Will you update the Getting Started guides to include the package in the command-line instructions?
Thanks,
Carles
From:<zephyr-devel-bounces@...> on behalf of "Boie,
Hi Andrew,
Will you update the Getting Started guides to include the package in the command-line instructions?
Thanks,
Carles
From:<zephyr-devel-bounces@...> on behalf of "Boie,
|
By
Carles Cufi
·
#960
·
|
|
new host system dependency: gperf
Now that the merge window is open and we are working towards 1.10, we have a new host system dependncy: gperf. It is a tool that has existed for a long time, it generates C code that implements
Now that the merge window is open and we are working towards 1.10, we have a new host system dependncy: gperf. It is a tool that has existed for a long time, it generates C code that implements
|
By
Boie, Andrew P
·
#959
·
|
|
Zephyr 1.9.0 tagged
Hi,
We are pleased to announce the release of Zephyr v1.9.0.
Major enhancements planned with this release include:
Bluetooth 5.0 Support (all features except Advertising Extensions)
Bluetooth
Hi,
We are pleased to announce the release of Zephyr v1.9.0.
Major enhancements planned with this release include:
Bluetooth 5.0 Support (all features except Advertising Extensions)
Bluetooth
|
By
Nashif, Anas
·
#958
·
|