|
cannot find "__device_[device name]"
#api
Hi,
I am building a device driver for Zephyr and when calling the macro, DEVICE_GET(), likeDEVICE_GET(my_dev), I get a build error complaining about undefined__device_my_dev.
I tried to locate where
Hi,
I am building a device driver for Zephyr and when calling the macro, DEVICE_GET(), likeDEVICE_GET(my_dev), I get a build error complaining about undefined__device_my_dev.
I tried to locate where
|
By
Justin Huang
·
#1826
·
|
|
cannot find "__device_[device name]"
#api
Hi,
I am building a device driver for Zephyr and when calling the macro, DEVICE_GET(), like DEVICE_GET(my_dev), I get a build error complaining about undefined __device_my_dev.
I tried to locate where
Hi,
I am building a device driver for Zephyr and when calling the macro, DEVICE_GET(), like DEVICE_GET(my_dev), I get a build error complaining about undefined __device_my_dev.
I tried to locate where
|
By
Justin Huang
·
#1825
·
|
|
NVS on flash with erase page size 64k or larger
#nvs
Hi there
In my application I try to use NVS on an external SPI flash (M25P16) which has an erase page size of 64k.
As I realised, NVS seems to have some limit on its maximum sector size of just below
Hi there
In my application I try to use NVS on an external SPI flash (M25P16) which has an erase page size of 64k.
As I realised, NVS seems to have some limit on its maximum sector size of just below
|
By
Marco
·
#1824
·
|
|
Failure of CMD0 sending using STM32F769 + SPI2 for [samples/subsys/fs/fat_fs]
#spi
#fatfs
My environment:
Ubuntu 18.04 LTS
STM32L476 Nucleo_64 (hereafter STM32L476)
STM32F769 Discovery Kit (hereafter STM32F769)
Zephyr 2.1.0-rc1
Project: `samples/subsys/fs/fat_fs`
Logic Analyzer: Analog
My environment:
Ubuntu 18.04 LTS
STM32L476 Nucleo_64 (hereafter STM32L476)
STM32F769 Discovery Kit (hereafter STM32F769)
Zephyr 2.1.0-rc1
Project: `samples/subsys/fs/fat_fs`
Logic Analyzer: Analog
|
By
@yasokada
·
#1823
·
|
|
It worked > Re: SPI2 definition is not found for STM32L476 device tree. How to add?
Dear Yannis
(I have sent private reply, but for other people, I send this reply again).
Thank you very much.
I added the description for &spi2 in an overlay file.
It worked.
I appreciate it.
Dear Yannis
(I have sent private reply, but for other people, I send this reply again).
Thank you very much.
I added the description for &spi2 in an overlay file.
It worked.
I appreciate it.
|
By
@yasokada
·
#1822
·
|
|
Private: Re: [Zephyr-users] SPI2 definition is not found for STM32L476 device tree. How to add?
-------- Forwarded Message --------
Subject: Private: Re: [Zephyr-users] SPI2 definition is not found for STM32L476 device tree. How to add?
Date: Fri, 27 Dec 2019 15:40:46 -0800
From:
-------- Forwarded Message --------
Subject: Private: Re: [Zephyr-users] SPI2 definition is not found for STM32L476 device tree. How to add?
Date: Fri, 27 Dec 2019 15:40:46 -0800
From:
|
By
Yannis Damigos
·
#1821
·
|
|
Re: SPI2 definition is not found for STM32L476 device tree. How to add?
Hi,
You don't need to add it. It exists in dts/arm/st/l4/stm32l471.dtsi
To enable it just add the following in nucleo_l476rg.dts or an overlay file:
&spi2 {
status = "okay";
};
Yannis
Hi,
You don't need to add it. It exists in dts/arm/st/l4/stm32l471.dtsi
To enable it just add the following in nucleo_l476rg.dts or an overlay file:
&spi2 {
status = "okay";
};
Yannis
|
By
Yannis Damigos
·
#1820
·
|
|
SPI2 definition is not found for STM32L476 device tree. How to add?
My environment:
Ubuntu 18.04 LTS
STM32L476 Nucleo_64 (hereafter STM32L476)
STM32F769 Discovery Kit (hereafter STM32F769)
Zephyr 2.1.0-rc1
### SPI2 for STM32L476
My environment:
Ubuntu 18.04 LTS
STM32L476 Nucleo_64 (hereafter STM32L476)
STM32F769 Discovery Kit (hereafter STM32F769)
Zephyr 2.1.0-rc1
### SPI2 for STM32L476
|
By
@yasokada
·
#1819
·
Edited
|
|
Multiple device with different GPIO chip selects on SPI2
Good day,
I have decided to dive head first into Zephyr with a project of mine.
I have a LIS2DH and a W25Q128JV Flash on the same SPI bus, with two GPIOs to control the chip selects. I have a
Good day,
I have decided to dive head first into Zephyr with a project of mine.
I have a LIS2DH and a W25Q128JV Flash on the same SPI bus, with two GPIOs to control the chip selects. I have a
|
By
armand@...
·
#1817
·
|
|
Re: Regarding the flash of hci_uart sample app of zephire in nrf52840
Please follow this, if using hci_uart:
https://devzone.nordicsemi.com/nordic/nordic-blog/b/blog/posts/nrf5x-support-within-the-zephyr-project-rtos
Else if using hci_usb and the nRF52840’s
Please follow this, if using hci_uart:
https://devzone.nordicsemi.com/nordic/nordic-blog/b/blog/posts/nrf5x-support-within-the-zephyr-project-rtos
Else if using hci_usb and the nRF52840’s
|
By
Chettimada, Vinayak Kariappa
·
#1816
·
|
|
Regarding the flash of hci_uart sample app of zephire in nrf52840
I have build and flashed the zephire/sample/bluetooth/hci_uart on nrf52840 board and connected the board with ubuntu but hci interface was not created when checked using hciconfig.
Can you please
I have build and flashed the zephire/sample/bluetooth/hci_uart on nrf52840 board and connected the board with ubuntu but hci interface was not created when checked using hciconfig.
Can you please
|
By
Amit Purwar <amit.purwar@...>
·
#1815
·
|
|
How to implement a simple SPI-Slave function on nRF52 PCA10040 board.
I am attempting to create a simple SPI-Slave implementation for the nRF52 PCA10040 board.
My project’s source code is at https://github.com/foldedtoad/spi_slave.
While I am able to receive
I am attempting to create a simple SPI-Slave implementation for the nRF52 PCA10040 board.
My project’s source code is at https://github.com/foldedtoad/spi_slave.
While I am able to receive
|
By
robin@...
·
#1814
·
|
|
API meeting: agenda
Hi all,
This week we will focus on two Stable API Change RFCs and GPIO.
I am unable to attend but Peter Bigot has kindly offered to chair the meeting instead.
Reminder on the Stable API Change RFCs:
Hi all,
This week we will focus on two Stable API Change RFCs and GPIO.
I am unable to attend but Peter Bigot has kindly offered to chair the meeting instead.
Reminder on the Stable API Change RFCs:
|
By
Carles Cufi
·
#1813
·
|
|
Proposal to make Zephyr 2.2 require Python 3.6 or later
Hello Zephyr users,
Now that Zephyr 2.1 has been released, I am proposing we make Python 3.6
the minimum supported Python version for
Hello Zephyr users,
Now that Zephyr 2.1 has been released, I am proposing we make Python 3.6
the minimum supported Python version for
|
By
Bolivar, Marti
·
#1812
·
|
|
Re: Using #stm32 HAL_TIM_xyz for counting pulses with timer in external clock mode
#stm32
Hi Pauli,
If you are able to do what you want with Cube HAL then, to interface with zephyr, you just need to redefine
the HAL callback (defined as weak in HAL drivr) in your zephyr application.
You
Hi Pauli,
If you are able to do what you want with Cube HAL then, to interface with zephyr, you just need to redefine
the HAL callback (defined as weak in HAL drivr) in your zephyr application.
You
|
By
Erwan Gouriou
·
#1811
·
|
|
Using #stm32 HAL_TIM_xyz for counting pulses with timer in external clock mode
#stm32
Dear all,
I am doing silly motor driver for worm-gear dc-motor with stm32f411e-disco board (and L298). The dc-motor has HAL-sensor for feedback - providing raising/lowering edge for every turn. Now,
Dear all,
I am doing silly motor driver for worm-gear dc-motor with stm32f411e-disco board (and L298). The dc-motor has HAL-sensor for feedback - providing raising/lowering edge for every turn. Now,
|
By
Pauli
·
#1810
·
|
|
API meeting: Agenda
Hi all,
This week we will focus on API Changes and GPIO:
- Changing a stable API:
- https://github.com/zephyrproject-rtos/zephyr/pull/21013
- GPIO: Update on progress
- Look at the PRs with
Hi all,
This week we will focus on API Changes and GPIO:
- Changing a stable API:
- https://github.com/zephyrproject-rtos/zephyr/pull/21013
- GPIO: Update on progress
- Look at the PRs with
|
By
Carles Cufi
·
#1809
·
|
|
Different MAC address for nrf52 when using as a controller
#bluetooth
#nrf52480
#usb
#ble
Hi,
Iam using nrf52840 DK as a BLE controller. So i compiled a hex file and loaded into it. There after when we power on am getting the bdaddr of the device as 00:00:00:00:00:00, But when i check
Hi,
Iam using nrf52840 DK as a BLE controller. So i compiled a hex file and loaded into it. There after when we power on am getting the bdaddr of the device as 00:00:00:00:00:00, But when i check
|
By
Venkatesh Dyagala
·
#1808
·
Edited
|
|
Re: Determining source of GPIO Interrupt on NRF52832
#gpio
#nrf52832
I just realized I responded to you privately by accident, Lawrence. Sorry about that. I will copy the message I sent to you to the group so that the discussion is up to date.
The suggestion regarding
I just realized I responded to you privately by accident, Lawrence. Sorry about that. I will copy the message I sent to you to the group so that the discussion is up to date.
The suggestion regarding
|
By
bbradley@...
·
#1807
·
|
|
Re: bt_gatt_is_subscribed - any examples?
Adding devel@... to the email address.
Lawrence King
Principal Developer
+1(416)627-7302
Adding devel@... to the email address.
Lawrence King
Principal Developer
+1(416)627-7302
|
By
Lawrence King
·
#1806
·
|