|
rtc api in zephyr
Hi,
I just heard rtc api is deprecated, but I can not find any clue in the documentation or in this mail list. What's that mean?
Should we avoid to use rtc api in the future and change to counter
Hi,
I just heard rtc api is deprecated, but I can not find any clue in the documentation or in this mail list. What's that mean?
Should we avoid to use rtc api in the future and change to counter
|
By
Aaron Xu
·
#5899
·
|
|
Re: Nordic nRF52832 - UART redefining the pins?
Hi there,
The default PINs are configured in the board .dts file:
https://github.com/zephyrproject-rtos/zephyr/blob/master/boards/arm/nrf52_pca10040/nrf52_pca10040.dts#L95
You can indeed
Hi there,
The default PINs are configured in the board .dts file:
https://github.com/zephyrproject-rtos/zephyr/blob/master/boards/arm/nrf52_pca10040/nrf52_pca10040.dts#L95
You can indeed
|
By
Carles Cufi
·
#5898
·
|
|
Nordic nRF52832 - UART redefining the pins?
Hi Zephyr community,
So far I couldn't see where the default UART rx/tx pin mapping (RX = 8 and TX = 6) is happening in the Zephyr code.
I want to run the hci_uart on the nRF52832 SoC to implement
Hi Zephyr community,
So far I couldn't see where the default UART rx/tx pin mapping (RX = 8 and TX = 6) is happening in the Zephyr code.
I want to run the hci_uart on the nRF52832 SoC to implement
|
By
frv
·
#5897
·
|
|
Re: BLE throughput under load, QOS
#ble
#nrf52840
Hi Henry,
I wonder if this could be related to the lack of buffers on the host,
I assume you would use bt_gatt_notify with NULL conn which will take
care of notifying each connection but that may end
Hi Henry,
I wonder if this could be related to the lack of buffers on the host,
I assume you would use bt_gatt_notify with NULL conn which will take
care of notifying each connection but that may end
|
By
Luiz Augusto von Dentz
·
#5896
·
|
|
Re: [bt_le]Does Zephyr have APIs to get ConnInterval, DataLengthExtension and PHY?
Hi Johan,
Thanks for the prompt reply, this is useful for me.
I think it's good idea to become a contributor of Zephyr project.
Regards,
Kai
On 2019/4/5, 11:09 PM, "Hedberg, Johan"
Hi Johan,
Thanks for the prompt reply, this is useful for me.
I think it's good idea to become a contributor of Zephyr project.
Regards,
Kai
On 2019/4/5, 11:09 PM, "Hedberg, Johan"
|
By
Kai Ren
·
#5895
·
|
|
Support for Open Supervised Device Protocol (OSDP) in Zephyr
Hello,
I'm working on an project that involves Open Supervised Device Protocol (OSDP) [1], an access control communication protocol used in the security industry. I'm working on this as an
Hello,
I'm working on an project that involves Open Supervised Device Protocol (OSDP) [1], an access control communication protocol used in the security industry. I'm working on this as an
|
By
Siddharth Chandrasekaran <siddharth@...>
·
#5894
·
|
|
To bring back RPL to Zephyr project
Hi All,
I am kind of new to Zephyr dev community. Previously our team was using Zephyr without actively involved in kernel development.
Recently we just noticed that RPL module will be removed in
Hi All,
I am kind of new to Zephyr dev community. Previously our team was using Zephyr without actively involved in kernel development.
Recently we just noticed that RPL module will be removed in
|
By
Jian Zhang
·
#5893
·
|
|
Re: [bt_le]Does Zephyr have APIs to get ConnInterval, DataLengthExtension and PHY?
Hi Kai,
The API to get information on a connection is bt_conn_get_info(). Out of the parameters you mentioned you can get at least get the interval, however DLE or PHY information is not currently
Hi Kai,
The API to get information on a connection is bt_conn_get_info(). Out of the parameters you mentioned you can get at least get the interval, however DLE or PHY information is not currently
|
By
Johan Hedberg
·
#5892
·
|
|
[bt_le]Does Zephyr have APIs to get ConnInterval, DataLengthExtension and PHY?
Hello,
I’m trying to find the APIs on Zephyr,https://docs.zephyrproject.org/latest/reference/bluetooth/index.html ,using these APIs can get
ConnInterval,
whether Data Length Extension is enable or
Hello,
I’m trying to find the APIs on Zephyr,https://docs.zephyrproject.org/latest/reference/bluetooth/index.html ,using these APIs can get
ConnInterval,
whether Data Length Extension is enable or
|
By
Kai Ren
·
#5891
·
|
|
Re: Removing padding from generated hex files
"Does the ". = 0x1000;" indicate the padding?"
Yes, you would want to compare it to the source to see what it's trying to do, and possibly
how to make it
"Does the ". = 0x1000;" indicate the padding?"
Yes, you would want to compare it to the source to see what it's trying to do, and possibly
how to make it
|
By
Sebastian Boe
·
#5890
·
|
|
Re: Removing padding from generated hex files
Hi,
That's where I'm not sure on, I see the fill section but can't work out where it's coming from:
Memory Configuration
Name Origin Length Attributes
FLASH
Hi,
That's where I'm not sure on, I see the fill section but can't work out where it's coming from:
Memory Configuration
Name Origin Length Attributes
FLASH
|
By
lairdjm
·
#5889
·
|
|
Re: Removing padding from generated hex files
Okay, if I was you I would have a look at the map file and try to figure out what it's putting there and why.
________________________________________
Sent: Thursday, April 4, 2019 2:34 PM
To: Bøe,
Okay, if I was you I would have a look at the map file and try to figure out what it's putting there and why.
________________________________________
Sent: Thursday, April 4, 2019 2:34 PM
To: Bøe,
|
By
Sebastian Boe
·
#5888
·
|
|
Re: Removing padding from generated hex files
Hi,
I have tried that but it still pads the first section with 0x00 bytes. I'm using a custom board file and project so tried switched to trying it with the hello world sample using the
Hi,
I have tried that but it still pads the first section with 0x00 bytes. I'm using a custom board file and project so tried switched to trying it with the hello world sample using the
|
By
lairdjm
·
#5887
·
|
|
Re: Removing padding from generated hex files
Hi,
try enabling
CONFIG_BUILD_NO_GAP_FILL
IMHO this should be the default. Needing to fill the gaps is indicative of a problem
elsewhere, e.g. in the linker
Hi,
try enabling
CONFIG_BUILD_NO_GAP_FILL
IMHO this should be the default. Needing to fill the gaps is indicative of a problem
elsewhere, e.g. in the linker
|
By
Sebastian Boe
·
#5886
·
|
|
Removing padding from generated hex files
Hi,
Is it possible when building projects to have the flash sections that are defined in thedts but unused (in this instance, the Nordic MBR) and not have them filled but instead left blank/empty? I
Hi,
Is it possible when building projects to have the flash sections that are defined in thedts but unused (in this instance, the Nordic MBR) and not have them filled but instead left blank/empty? I
|
By
Jamie Mccrae <Jamie.Mccrae@...>
·
#5885
·
|
|
Re: BT Mesh Health Server Fault Register
#bluetoothmesh
#zephyrbluetoothmesh
Hi Billy,
That depends on your application and the source of the faults. All the stack requires is for you to keep track of the fault history. You could do that e.g. with a simple u8_t array like the
Hi Billy,
That depends on your application and the source of the faults. All the stack requires is for you to keep track of the fault history. You could do that e.g. with a simple u8_t array like the
|
By
Johan Hedberg
·
#5884
·
|
|
Re: BT Mesh Health Server Fault Register
#bluetoothmesh
#zephyrbluetoothmesh
Hi,
The Zephyr mesh health server leaves fault registration up to the application, however you do need to register a bt_mesh_health_srv_cb struct which includes callbacks for retrieving the faults,
Hi,
The Zephyr mesh health server leaves fault registration up to the application, however you do need to register a bt_mesh_health_srv_cb struct which includes callbacks for retrieving the faults,
|
By
Johan Hedberg
·
#5883
·
|
|
BT Mesh Health Server Fault Register
#bluetoothmesh
#zephyrbluetoothmesh
Hi All,
I am looking at the BT Mesh Health Server, and Client, so that i can report faults between nodes and ultimately to the central control application.
Unfortunately, i have run into a problem;
Hi All,
I am looking at the BT Mesh Health Server, and Client, so that i can report faults between nodes and ultimately to the central control application.
Unfortunately, i have run into a problem;
|
By
William Fish
·
#5882
·
|
|
Re: #ble #nrf52840
#nrf52840
#ble
Hi Henry,
This is news to me and, although it might be expected, I would like to check with a couple of people. So I think this deserves being tracked. Would you mind opening a “Question”
Hi Henry,
This is news to me and, although it might be expected, I would like to check with a couple of people. So I think this deserves being tracked. Would you mind opening a “Question”
|
By
Carles Cufi
·
#5881
·
|
|
Re: Error Msg whey type "west --version" on the guide of v1.14-rc3
Hi Aaron,
I'm using Windows.
After type "pip --version", the output is:
pip3 --version
pip 19.0.3 from c:\python37\lib\site-packages\pip (python 3.7)
Best Regards,
Kai
Sent: Wednesday, April 3,
Hi Aaron,
I'm using Windows.
After type "pip --version", the output is:
pip3 --version
pip 19.0.3 from c:\python37\lib\site-packages\pip (python 3.7)
Best Regards,
Kai
Sent: Wednesday, April 3,
|
By
Kai Ren
·
#5880
·
|