|
LPC55S28JBD100 Zephyr OS
Hello,
I have promoted NXP MCU LPC55S28JBD100 to our customer MOXA and I would like to propose them to use Zephyr OS but the LPC55S28JBD100 has not been supported to run the Zephyr OS. Would you
Hello,
I have promoted NXP MCU LPC55S28JBD100 to our customer MOXA and I would like to propose them to use Zephyr OS but the LPC55S28JBD100 has not been supported to run the Zephyr OS. Would you
|
By
Wu, Hubert <Hubert.Wu@...>
·
#6555
·
|
|
Re: Persistent memory issue (NVS and FCB) - Zephyr V1.X versus V2
#ble
#nrf52
Hi Carles,
Thanks for the tip. I would be really surprised that I already have a stack issue, as the application is still very simple... Nevertheless it can't harm to have this option
Hi Carles,
Thanks for the tip. I would be really surprised that I already have a stack issue, as the application is still very simple... Nevertheless it can't harm to have this option
|
By
frv
·
#6554
·
|
|
Re: Persistent memory issue (NVS and FCB) - Zephyr V1.X versus V2
#ble
#nrf52
Hi there,
One of the likely culprits is stack sizing.
Please enable CONFIG_HW_STACK_PROTECTION and verify that one of your stacks is not overflowing.
Regards,
Carles
Hi there,
One of the likely culprits is stack sizing.
Please enable CONFIG_HW_STACK_PROTECTION and verify that one of your stacks is not overflowing.
Regards,
Carles
|
By
Carles Cufi
·
#6553
·
|
|
Persistent memory issue (NVS and FCB) - Zephyr V1.X versus V2
#ble
#nrf52
Hi all,
I have the following setup:
- nrf52 demo kit running a simple BLE peripheral application
- Raspberry Pi running a BLE central application
A secured connection is made (authentication based on
Hi all,
I have the following setup:
- nrf52 demo kit running a simple BLE peripheral application
- Raspberry Pi running a BLE central application
A secured connection is made (authentication based on
|
By
frv
·
#6552
·
|
|
Re: bt_gatt_notify multiple characteristics - always notification for the first characteristic
#ble
Hi all,
Solved...
It looks like when BT_GATT_CCC is set in the service MACRO define, it takes not 1 but 2 indices to advance as also there is automatically a descriptor char added if you need to
Hi all,
Solved...
It looks like when BT_GATT_CCC is set in the service MACRO define, it takes not 1 but 2 indices to advance as also there is automatically a descriptor char added if you need to
|
By
frv
·
#6551
·
Edited
|
|
Cancelled Event: Zephyr Project: APIs - Tuesday, 31 December 2019
#cal-cancelled
Cancelled: Zephyr Project: APIs
This event has been cancelled.
When:
Tuesday, 31 December 2019
9:00am to 10:00am
(UTC-08:00) America/Los Angeles
Where:
https://zoom.us/j/177647878
Organizer:
Cancelled: Zephyr Project: APIs
This event has been cancelled.
When:
Tuesday, 31 December 2019
9:00am to 10:00am
(UTC-08:00) America/Los Angeles
Where:
https://zoom.us/j/177647878
Organizer:
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6550
·
|
|
Cancelled Event: Zephyr Project: APIs - Tuesday, 24 December 2019
#cal-cancelled
Cancelled: Zephyr Project: APIs
This event has been cancelled.
When:
Tuesday, 24 December 2019
9:00am to 10:00am
(UTC-08:00) America/Los Angeles
Where:
https://zoom.us/j/177647878
Organizer:
Cancelled: Zephyr Project: APIs
This event has been cancelled.
When:
Tuesday, 24 December 2019
9:00am to 10:00am
(UTC-08:00) America/Los Angeles
Where:
https://zoom.us/j/177647878
Organizer:
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6549
·
|
|
bt_gatt_notify multiple characteristics - always notification for the first characteristic
#ble
Hi all,
I have a user defined BT GATT service with 2 user defined characteristics.
The code is as simple as this for defining the GATT service.
static struct bt_uuid_128 uuidButtonService =
Hi all,
I have a user defined BT GATT service with 2 user defined characteristics.
The code is as simple as this for defining the GATT service.
static struct bt_uuid_128 uuidButtonService =
|
By
frv
·
#6548
·
|
|
Cancelled Event: Zephyr Project: Dev Meeting - Thursday, 5 December 2019
#cal-cancelled
Cancelled: Zephyr Project: Dev Meeting
This event has been cancelled.
When:
Thursday, 5 December 2019
8:00am to 9:00am
(UTC-08:00) America/Los
Cancelled: Zephyr Project: Dev Meeting
This event has been cancelled.
When:
Thursday, 5 December 2019
8:00am to 9:00am
(UTC-08:00) America/Los
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6547
·
|
|
Re: Linkage Zephyr V1.13 versus V2.X
Hi Lawrence,
As far as I know this one
CONFIG_BT_GATT_DYNAMIC_DB=y
did the trick as specified in your prj.conf as well.
Br,
Frank
Hi Lawrence,
As far as I know this one
CONFIG_BT_GATT_DYNAMIC_DB=y
did the trick as specified in your prj.conf as well.
Br,
Frank
|
By
frv
·
#6546
·
Edited
|
|
Re: Linkage Zephyr V1.13 versus V2.X
This is what I have my prj.conf, yours might be different, an I’m not sure what I have is 100% correct:
# BT
This is what I have my prj.conf, yours might be different, an I’m not sure what I have is 100% correct:
# BT
|
By
Lawrence King
·
#6545
·
|
|
Re: Linkage Zephyr V1.13 versus V2.X
Hi all,
Sorry replied the solution to myself and not to the group, but solution is to set the option "CONFIG_BT_GATT_DYNAMIC_DB=y"
in the application prj.conf file, otherwise it is no longer possible
Hi all,
Sorry replied the solution to myself and not to the group, but solution is to set the option "CONFIG_BT_GATT_DYNAMIC_DB=y"
in the application prj.conf file, otherwise it is no longer possible
|
By
frv
·
#6544
·
|
|
Re: Linkage Zephyr V1.13 versus V2.X
Hi Lawrence,
Correct, but this one was quite easy to find as the compiler raised the issue as the function parameters no longer matched.
Having to specify the option in the prj.conf to support
Hi Lawrence,
Correct, but this one was quite easy to find as the compiler raised the issue as the function parameters no longer matched.
Having to specify the option in the prj.conf to support
|
By
frv
·
#6543
·
Edited
|
|
Re: Linkage Zephyr V1.13 versus V2.X
I had the same issue when moving forward kernel versions. The API for
At the top level get rid of the bt_gatt_ccc_cfg variables (my code has two characteristics) :
#ifndef NEW_BT_STACK
static
I had the same issue when moving forward kernel versions. The API for
At the top level get rid of the bt_gatt_ccc_cfg variables (my code has two characteristics) :
#ifndef NEW_BT_STACK
static
|
By
Lawrence King
·
#6542
·
|
|
Linkage Zephyr V1.13 versus V2.X
Hi all,
Recently I have moved from Zephyr 1.13 to V2.
I ported my simple BLE peripheral application based on the sample code peripheral_hr from V1.13 to V2.
However I can't seem to get it build
Hi all,
Recently I have moved from Zephyr 1.13 to V2.
I ported my simple BLE peripheral application based on the sample code peripheral_hr from V1.13 to V2.
However I can't seem to get it build
|
By
frv
·
#6541
·
Edited
|
|
Zephyr 2.1.0-rc3 tagged
Hi Zephyr developers,
Zephyr 2.1.0-rc3 release candidate has been tagged.
Current issue status:
Priority
Count
Has PR
High
0
-
Medium
17
1
Testing Zephyr release candidate is
Hi Zephyr developers,
Zephyr 2.1.0-rc3 release candidate has been tagged.
Current issue status:
Priority
Count
Has PR
High
0
-
Medium
17
1
Testing Zephyr release candidate is
|
By
David Leach
·
#6540
·
|
|
Re: DFU OTA by using mcuboot bootloader in serial recovery mode
#ble
#hci
#nrf52480
#uart
Hi Mayank:
I had a similar requirement, also without a button on the same Nordic chip. I simply copied this file into my project, and called smp_svr_init() from my main() after bluetooth was up
Hi Mayank:
I had a similar requirement, also without a button on the same Nordic chip. I simply copied this file into my project, and called smp_svr_init() from my main() after bluetooth was up
|
By
Lawrence King
·
#6539
·
|
|
Upcoming Event: Zephyr Project: APIs - Tue, 12/03/2019 9:00am-10:00am, Please RSVP
#cal-reminder
Reminder: Zephyr Project: APIs
When: Tuesday, 3 December 2019, 9:00am to 10:00am, (GMT-08:00) America/Los Angeles
Where:https://zoom.us/j/177647878
An RSVP is requested. Click here to
Reminder: Zephyr Project: APIs
When: Tuesday, 3 December 2019, 9:00am to 10:00am, (GMT-08:00) America/Los Angeles
Where:https://zoom.us/j/177647878
An RSVP is requested. Click here to
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6538
·
|
|
API meeting: Agenda
Hi all,
This week we will focus on GPIO:
- GPIO: Update on progress
- Look at the PRs with driver conversion (https://github.com/zephyrproject-rtos/zephyr/issues/18530)
- Check users of GPIO
Hi all,
This week we will focus on GPIO:
- GPIO: Update on progress
- Look at the PRs with driver conversion (https://github.com/zephyrproject-rtos/zephyr/issues/18530)
- Check users of GPIO
|
By
Carles Cufi
·
#6537
·
|
|
DFU OTA by using mcuboot bootloader in serial recovery mode
#ble
#hci
#nrf52480
#uart
Hello All,
Right now I'm exploring the best way to do DFU OTA.
I would like to ask that how i can do the DFU by booting the mcuboot bootloader in serial recovery mode.
I have one nrf52840_pca10056
Hello All,
Right now I'm exploring the best way to do DFU OTA.
I would like to ask that how i can do the DFU by booting the mcuboot bootloader in serial recovery mode.
I have one nrf52840_pca10056
|
By
Mayank <mayank7117@...>
·
#6536
·
|